自己重写一个label
class JJLabel: UILabel {
public var textInsets: UIEdgeInsets = .zero
override init(frame: CGRect) {
super.init(frame: frame)
}
internal init(frame: CGRect, textInsets: UIEdgeInsets) {
self.textInsets = textInsets
super.init(frame: frame)
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
override func drawText(in rect: CGRect) {
super.drawText(in: UIEdgeInsetsInsetRect(rect, textInsets))
}
}
使用:
beginTitle = JJLabel(frame: CGRect(x: 13, y: 114 + height!, width: 230, height: 44))
beginTitle?.attributedText = NSAttributedString(string: "开始日期 请选择开始日期", attributes: [NSAttributedStringKey.foregroundColor: kMainColor33, NSAttributedStringKey.font: FONT13])
beginTitle?.textInsets = UIEdgeInsets(top: 0, left: 13, bottom: 0, right: 13)
iOS开发笔记-66:swift4-UILabel设置内边距textInsets
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 问题说明 默认Label的显示效果如下 很多情况下,需要如下有内边距的效果(注意第一行与最后一行文字与label的...