UIButton 详解


UIButton 详解
http://www.cnblogs.com/sell/archive/2013/02/04/2891769.html
 1 UIButton *bt = [UIButton buttonWithType:UIButtonTypeContactAdd];// UIButtonTypeCustom, UIButtonTypeRoundedRect; //
 2     [bt setTitle:@"myButton" forState:UIControlStateNormal];        // 普通状态
 3     [bt setTitle:@"Button1" forState:UIControlStateHighlighted];    // 触摸时
 4     [bt setTitle:@"disButton" forState:UIControlStateDisabled];     // 无效时
 5     [bt setTitleColor:[UIColor redColor] forState:UIControlStateNormal];    // 普通状态下的字体颜色
 6     
 7     bt.titleLabel.font = [UIFont boldSystemFontOfSize:24];  // 按钮字体
 8     bt.titleLabel.shadowOffset = CGSizeMake(1, 1);
 9     bt.titleLabel.shadowColor = [UIColor redColor];
10     
11     
12     [bt setImage:[UIImage imageNamed:@"normal.png"] forState:UIControlStateNormal];
13     // 普通状态下图片,只在UIButtonTypeCustom,UIButtonTypeRoundedRect下有效
14     [bt setBackgroundImage:[UIImage imageNamed:@"background.png"] forState:UIControlStateNormal]; // 设置背景图
15     
16     UIEdgeInsets insets;    // 设置按钮内部图片间距
17     insets.top = insets.bottom = insets.right = insets.left = 10;
18     bt.contentEdgeInsets = insets;
19     
20     bt.titleEdgeInsets = insets;    // 标题间距
21     
22     [bt addTarget:self
23            action:@selector(click:)
24  forControlEvents:UIControlEventTouchUpInside]; // 添加事件响应

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值