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

iOS Button设置

时间:2016-07-15 13:10:58      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:

UIButton *kefuBtn = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, 60, 44)];
kefuBtn.backgroundColor = SXColor(248, 248, 248); // 设置按钮背景颜色
[kefuBtn setImage:[UIImage imageNamed:@"details_server"] forState:UIControlStateNormal];
[kefuBtn setImageEdgeInsets:UIEdgeInsetsMake(5, 8, 20, 5)]; // 设置图片位置
[kefuBtn setTitle:@"联系客服" forState:UIControlStateNormal];
kefuBtn.titleEdgeInsets = UIEdgeInsetsMake(30,-20, 10, 0);  // 设置文字位置
[kefuBtn setTitleColor:SXColor(149, 149, 149) forState:UIControlStateNormal]; //设置文字颜色
kefuBtn.titleLabel.font = [UIFont systemFontOfSize:12];  // 设置文字大小

效果如下:

技术分享

iOS Button设置

标签:

原文地址:http://www.cnblogs.com/xsphehe/p/5672939.html

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