码迷,mamicode.com
首页 > 其他好文 > 详细

UIButton上字体的对齐方式

时间:2015-07-13 18:37:16      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:objectivec   ios   uibutton   字体   


设置UIButton上字体的对齐方式,不是用:

    [Button.titleLabel setTextAlignment:UITextAlignmentCenter];

而是用:

[Button setContentHorizontalAlignment:UIControlContentHorizontalAlignmentCenter];


typedef NS_ENUM(NSInteger, UIControlContentHorizontalAlignment) {

    UIControlContentHorizontalAlignmentCenter = 0,

    UIControlContentHorizontalAlignmentLeft   = 1,

    UIControlContentHorizontalAlignmentRight  = 2,

    UIControlContentHorizontalAlignmentFill   = 3,

};


版权声明:本文为博主原创文章,未经博主允许不得转载。

UIButton上字体的对齐方式

标签:objectivec   ios   uibutton   字体   

原文地址:http://blog.csdn.net/xiaopeng12300/article/details/46865551

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!