码迷,mamicode.com
首页 > 移动开发 > 详细

iOS button文字居中

时间:2016-11-30 14:45:55      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:数值   interface   ios   uibutton   center   ret   ace   上下   har   

新建一个UIButton的category

.h

@interface UIButton (QXTitleInCenter)
-(instancetype)init;
@end

.m

@implementation UIButton (QXTitleInCenter)
-(instancetype)init{
    self = [super init]; 
    self.contentEdgeInsets = UIEdgeInsetsMake(-(self.intrinsicContentSize.height) * 0.18(调节文字上下高度的,数值越大文字越靠上方),0, 0, 0); 
    return self;
}
@end

  然后引入这个category,直接用UIButton就OK了

  

iOS button文字居中

标签:数值   interface   ios   uibutton   center   ret   ace   上下   har   

原文地址:http://www.cnblogs.com/ansyxpf/p/6117247.html

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