//
|
// MessageView.swift
|
// WashCar
|
//
|
// Created by alvin_y on 2020/7/9.
|
// Copyright © 2020 yangwang. All rights reserved.
|
//
|
|
import Foundation
|
import UIKit
|
class MessageView: UIView {
|
|
let view_background = UIView()
|
let label = UILabel()
|
|
init(string: String?, textColor: UIColor) {
|
super.init(frame: .zero)
|
|
addSubview(view_background)
|
|
label.text = string
|
label.textColor = textColor
|
label.font = UIFont.systemFont(ofSize: 14)
|
label.numberOfLines = 0
|
addSubview(label)
|
|
view_background.snp.makeConstraints { (make) in
|
make.edges.equalTo(self)
|
}
|
|
label.snp.makeConstraints { (make) in
|
make.edges.equalTo(view_background).inset(UIEdgeInsets(top: 10, left: 10, bottom: 10, right: 10))
|
}
|
|
}
|
|
required init?(coder aDecoder: NSCoder) {
|
fatalError("init(coder:) has not been implemented")
|
}
|
|
}
|