button的常⽤属性和⽅法总结Button(按钮)
总结:
/**
1. 按钮的风格:
1)UIButtonTypeCustom-------⽤于⾃定义按钮
2)UIButtonTypeRoundedRect-----⽩⾊圆⾓矩形
3)UIButtonTypeDetailDisclosure---⼀种蓝⾊样式按钮
4)UIButtonTypeInfoDark-------深⾊背景信息按钮
5)UIButtonTypeInfoLight--------浅⾊背景信息按钮
改变button按钮的形状6)UIButtonTypeContactAdd------蓝⾊加号按钮
2.设置样式
1)设置标题-----调⽤函数setTitle:(title) forState:(控件状态)
2)设置标题颜⾊------btn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
3)设置背景图⽚-----[btn setBackgroundImage:newIUmage forState:UIControlStateNormal];
4)设置背景颜⾊------- btn.backgroundColor = [UIColor clearColor];
3.添加响应
[btn addTarget:self action:@selector(Action:) forControlEvents:UIControlEventTouchUpInside];
*/
举例:
//1.初始化
//a)普通⽅法
UIButton *btn = [[UIButton alloc] initWithFrame:CGRectMake(10, 10, 80, 44)];
/
/b)类⽅法
UIButton *btn1 = [UIButton buttonWithType:UIButtonTypeContactAdd];
//设置title
[btn setTitle:@"title" forState:UIButtonTypeCustom];
//设置TitleColor
[btn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
//设置背景图⽚
[btn setBackgroundImage:newIUmage forState:UIControlStateNormal];
//设置背景颜⾊
btn.backgroundColor = [UIColor clearColor];
//添加btn的响应时间
[btn addTarget:self action:@selector(Action:) forControlEvents:UIControlEventTouchUpInside];
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论