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

iOS 按钮小记

时间:2015-04-18 13:15:04      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

1平时我们使用按钮的时候,有时候不止设置title有时候也需要放图片上去,系统默认title的文字是在图片的右边,这时候我们要设置到图片在上方,title文字在下方该怎么做呢?这时我们不需要多设置控件,只需要设置按钮title文字,图片的偏移量就行了,按钮有如下属性

@property(nonatomic)        UIEdgeInsets    contentEdgeInsets;  // default is UIEdgeInsetsZero
@property(nonatomic)        UIEdgeInsets    titleEdgeInsets;    // default is UIEdgeInsetsZero
@property(nonatomic)        UIEdgeInsets    imageEdgeInsets;    // default is UIEdgeInsetsZero

比如图片在上,文字在下面,我们只要设置yourBtn.imageEdgeInsets = UIEdgeInsetsMake(0, 0, 30, 0)就行了


iOS 按钮小记

标签:

原文地址:http://my.oschina.net/u/1466119/blog/403302

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