iOS 按钮小记
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)就行了
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。