首页 > 移动平台 > 详细

iOS 设置UILabel 的内边距

时间:2014-05-14 10:11:50      阅读:9127      评论:0      收藏:0      [点我收藏+]

iOS 设置UILabel 的内边距

- (void)drawTextInRect:(CGRect)rect {
    UIEdgeInsets insets = {0, 5, 0, 5};
    [super drawTextInRect:UIEdgeInsetsInsetRect(rect, insets)];
}

 

参考:http://stackoverflow.com/questions/3476646/uilabel-text-margin

http://unmi.cc/uilable-uitextfield-padding-insets/

iOS 设置UILabel 的内边距,布布扣,bubuko.com

iOS 设置UILabel 的内边距

原文:http://www.cnblogs.com/cocoajin/p/3725478.html

(3)
(1)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!