給UILabel加了一個邊框:
Label.text = lbltext;
Label.layer.borderColor = [[UIColor grayColor] CGColor];
Label.layer.borderWidth = 2;
但是運行之後在文字和邊框之間沒有間隔。
怎麼設置像UIButton的內凹效果?
想要實現文字河邊框之間有間隔 必須自定義Label 重寫drawTextInRect:(CGRect)rect 方法
例如
@interface TestUILabel : UILabel
@end
@implementation TestUILabel
- (void)drawTextInRect:(CGRect)rect {
//文字距離上下左右邊框都有10單位的間隔
CGRect newRect = CGRectMake(rect.origin.x + 10, rect.origin.y + 10, rect.size.width - 20, rect.size.height -20);
[super drawTextInRect:newRect];
}
@end
你同時對label加上文字中間對齊屬性 這樣基本可以實現你想要的