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

UI基础之UIButton相关

时间:2016-10-25 19:00:54      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:cto   elf   make   透明   点击   target   select   pre   control   

UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];

1、按钮透明效果

btn.alpha = 0.8;

2、按钮圆角处理

btn.layer.cornerRadius = 5;
btn.layer.masksToBounds = YES;

3、按钮文字字体大小(加粗)

btn.titleLabel.font = [UIFont boldSystemFontOfSize:13.0];

4、按钮文字、图片位置交换

btn.imageEdgeInsets = UIEdgeInsetsMake(0, 42, 0, -42);
btn.titleEdgeInsets = UIEdgeInsetsMake(0, -8, 0, 8);

5、按钮点击

[btn addTarget:self action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];

 

UI基础之UIButton相关

标签:cto   elf   make   透明   点击   target   select   pre   control   

原文地址:http://www.cnblogs.com/sjxjjx/p/5997407.html

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