素胚勾勒不出你
我通过子类来解决这个问题UILabel和压倒一切drawTextInRect:就像这样:- (void)drawTextInRect:(CGRect)rect {
UIEdgeInsets insets = {0, 5, 0, 5};
[super drawTextInRect:UIEdgeInsetsInsetRect(rect, insets)];}相当于SWIFT 3.1:override func drawText(in rect: CGRect) {
let insets = UIEdgeInsets.init(top: 0, left: 5, bottom: 0, right: 5)
super.drawText(in: UIEdgeInsetsInsetRect(rect, insets))}正如您可能已经收集到的,这是对TC.的回答..与此相比,它有两个优点:没有必要通过发送sizeToFit讯息如果你的标签有背景,而且你不想让它缩小,它就会让标签框单独使用。