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

UIButton 图标与文字上下垂直对齐

时间:2015-11-09 18:39:48      阅读:268      评论:0      收藏:0      [点我收藏+]

标签:

    botton.imageEdgeInsets = UIEdgeInsetsMake(- (botton.frame.size.height - botton.imageView.frame.size.height)/2, 0, (botton.frame.size.height - botton.imageView.frame.size.height)/2, 0);
    
    botton.titleEdgeInsets = UIEdgeInsetsMake(0, - (botton.imageView.frame.size.width/2 + botton.titleLabel.frame.size.width/2), 0, (botton.imageView.frame.size.width/2 + botton.titleLabel.frame.size.width/2));

 

核心代码:

UIEdgeInsetsMake(top, left, bottom, right);

由于Y轴通过top、bottom控制,在设置偏移量的时候要同时修改,如只修改一边,则偏移量倍数要x2(X轴同解)

 

UIButton 图标与文字上下垂直对齐

标签:

原文地址:http://www.cnblogs.com/ly1992/p/4950594.html

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