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

纯代码创建Button控件:

时间:2015-03-12 00:50:38      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:

纯代码创建Button控件:

// 创建按钮
UIButton *btn = [[UIButton alloc] init];

// 添加按钮
[self.view addSubview:btn];

// 设置frame
btn.frame = CGRectMake(50, 50, 100, 100);

// 设置背景图片
// 通过文件名加载图片(凡是PNG图片,都不用加拓展名)
UIImage *normal = [UIImage imageName:@“btn_01”];
// 设置普通状态下的背景图片
[btn setBackgroundImage:normal forState:UIControlStateNormal];

// 加载高亮的图片
UIImage *hight = [UIImage imageName:@“btn_02”];
[btn setBackgroundImage:normal forState:UIControlStateHighlighted];

// 设置文字
[btn setTitle:@“按钮1” forState:UIControlStateNormal];
[btn setTitle:@“按钮2” forState:UIControlStateHighlighted];

// 设置文字颜色
[btn setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
[btn setTitleColor:[UIColor blueColor] forState:UIControlStateHightlighted];

 

纯代码创建Button控件:

标签:

原文地址:http://www.cnblogs.com/pocket-mood/p/4331293.html

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