|
@@ -106,12 +106,18 @@ class MessagePlanetNotiTableCell: UITableViewCell {
|
|
timeLabel.textColor = kffffffColor
|
|
timeLabel.textColor = kffffffColor
|
|
timeLabel.font = kScaleRegularFont12
|
|
timeLabel.font = kScaleRegularFont12
|
|
timeLabel.textAlignment = .center
|
|
timeLabel.textAlignment = .center
|
|
|
|
+ timeLabel.cornerRadius = 2
|
|
|
|
+ timeLabel.masksToBounds = true
|
|
return timeLabel
|
|
return timeLabel
|
|
}()
|
|
}()
|
|
|
|
|
|
private lazy var notiView: UIView = {
|
|
private lazy var notiView: UIView = {
|
|
let notiView = UIView()
|
|
let notiView = UIView()
|
|
notiView.backgroundColor = kffffffColor
|
|
notiView.backgroundColor = kffffffColor
|
|
|
|
+ notiView.cornerRadius = 4
|
|
|
|
+ notiView.masksToBounds = true
|
|
|
|
+ notiView.layer.borderWidth = 1.0
|
|
|
|
+ notiView.layer.borderColor = ke6e6e6Color.cgColor
|
|
return notiView
|
|
return notiView
|
|
}()
|
|
}()
|
|
|
|
|