博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iPhone开发进阶(6)--- 编程定制UIButton
阅读量:5353 次
发布时间:2019-06-15

本文共 2698 字,大约阅读时间需要 8 分钟。

上一回介绍了不使用 XIB 文件来定义 UIViewController 的方法。这一回说一说自动创建 UIButton 而不使用 XIB 文件。

通过这一节的学习,我们可以掌握不通过 XIB (InterfaceBuilder) 来使用 UIControl 的 addTarget 方法、对应相应的事件动作。

具体的例子是基于上一讲中的 CustomViewController 类,按钮按下是计数器加一,并显示在视图上。

首先,在 CustomViewController 类中添加技术用的变量 count。

1234
@interface CustomViewController : UIViewController {    int count;  // 计数器变量。}@end

接下来,添加按钮按下时调用的方法。

1234567
-(void)countup:(id)inSender {    count++;                        //  计数器自加    //  inSender 是被点击的 Button 的实例,下面设置其标题    [inSender setTitle:[NSString        stringWithFormat:@"count:%d", count]        forState:UIControlStateNormal];}

setTitle 方法设定 UIButton 的标题。使用 forState: 来指定该标题显示的状态(按下,弹起,通常),这里指定通常状态显示的标题。当然,使用 UIControlStateNormal 也是可以的。

注册按钮按下时的事件函数可以通过 UIControl 类中的 addTarget:action:forControlEvents: 方法(UIButton 继承了UIControl 类,所以可以直接使用)。如下所示:

12345678910
- (void)viewDidLoad {    [super viewDidLoad];    self.view.backgroundColor = [UIColor blueColor];    UIButton* button = [UIButton buttonWithType:UIButtonTypeInfoLight];    button.frame = CGRectMake(100,100,100,100);    // 注册按钮按下时的处理函数    [button addTarget:self action:@selector(countup:)        forControlEvents:UIControlEventTouchUpInside];    [self.view addSubview:button];}

forControlEvents: 中设定 UIControlEventTouchUpInside 是指在按钮上按下时响应。

因为动作函数(countup)的类型是

1
-(void)countup:(id)inSender

则在注册的时候需要写 countup: 。

而如果函数类型是

1
-(void)countup

的话,则是 countup ,这时 addTarget 接收的函数类型如下所示:

1
- (void) countup:(id)sender forEvent:(UIEvent *)event

同一响应,也可以注册多个处理,比如下面的代码,将上面两种类型的动作函数都注册了:

1234567891011121314151617181920212223242526272829303132333435
// 第一种处理方法-(void)countup:(id)inSender {    count++;    [inSender setTitle:[NSString        stringWithFormat:@"count:%d", count]        forState:UIControlStateNormal];}// 第二种处理方法-(void)countup {    count++;}-(void)countup:(id)inSender forEvent:(UIEvent *)event {    count++;    [inSender setTitle:[NSString        stringWithFormat:@"count:%d", count]        forState:UIControlStateNormal];}- (void)viewDidLoad {    [super viewDidLoad];    self.view.backgroundColor = [UIColor blueColor];    UIButton* button = [UIButton buttonWithType:UIButtonTypeInfoLight];    button.frame = CGRectMake(100,100,100,100);    // 注册第一种方法    [button addTarget:self action:@selector(countup:)        forControlEvents:UIControlEventTouchUpInside];    // 注册第二种方法    [button addTarget:self action:@selector(countup)        forControlEvents:UIControlEventTouchUpInside];    [button addTarget:self action:@selector(countup:forEvent:)        forControlEvents:UIControlEventTouchUpInside];    [self.view addSubview:button];}

编译以后,显示如下:

posted on
2012-02-03 14:41  阅读(
...) 评论(
...) 收藏

转载于:https://www.cnblogs.com/dongxiaoyu/archive/2012/02/03/2337063.html

你可能感兴趣的文章
POJ 2960 S-Nim 博弈论 sg函数
查看>>
Dijkstra模版
查看>>
一个简单的插件式后台任务管理程序
查看>>
GDB调试多进程程序
查看>>
组合数
查看>>
CMD批处理延时启动的几个方法
查看>>
转:LoadRunner中web_custom_request 和 web_submit_data的差别
查看>>
HTC G7直刷MIUI开启A2SD+亲测教程
查看>>
shiro的rememberMe不生效
查看>>
const 不兼容的类型限定符问题
查看>>
OpenCV的配置
查看>>
spring Cache + Redis 开发数据字典以及自定义标签
查看>>
成功连上数据库顿感世界美好许多
查看>>
编程注意2
查看>>
《C++ Primer Plus》第12章 类和动态内存分配 学习笔记
查看>>
javascript中sort()排序方法总结
查看>>
实现聊天界面的代码
查看>>
自己生成一个NDK的浅析
查看>>
Excel数据导入到数据库
查看>>
jQuery最佳实践
查看>>