实例化一个MarginLabel:
不设置内边距的时候:
设置内边距:
效果:
iOS 设置UILabel 的内边距- (void)drawTextInRect:(CGRect)rect {
UIEdgeInsets insets = {0, 5, 0, 5}
[super drawTextInRect:UIEdgeInsetsInsetRect(rect, insets)]
}
欢迎分享,转载请注明来源:内存溢出
实例化一个MarginLabel:
不设置内边距的时候:
设置内边距:
效果:
iOS 设置UILabel 的内边距- (void)drawTextInRect:(CGRect)rect {
UIEdgeInsets insets = {0, 5, 0, 5}
[super drawTextInRect:UIEdgeInsetsInsetRect(rect, insets)]
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)