博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS——UIButton响应传参数
阅读量:5298 次
发布时间:2019-06-14

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

- (void)addTarget:(id)target action:(SEL)action forControlEvents:(UIControlEvents)controlEvents;      方法是无法传参数的,能得到的只是响应的UIButton。下面我们来学习一下如何通过UIButton来“传参数”。 我们以UITableView 为例,在UITableViewCell中定义一个cell,我们称之为CustomCell,cell上加有一个UIButton的控件。我们要做的是如何在点击UIButton时获得cell。可以通过以下两种方法实现。      1. 使用delegate 首先,在CustomCell类文件中定义protocol,有如下定义@protocol CustomCellProtocol  - (void)customCell:(CustomCell *)cell didTapButton:(UIButton *)button;@end      将UIButton的响应加在CustomCell文件中,比如这个响应叫做- (IBAction)buttonTarget:(id)sender;      那么在点击button时,就会调用这个方法。这个方法可以实现如下,- (IBAction)buttonTarget:(id)sender{  if ([self.delegate respondsToSelector:@selector(customCell:didTapButton:)])  {    [self.delegate performSelector:@selector(customCell:didTapButton:) withObject:self   withObject:self.button];  }}      然后在UIViewController里实现代理方法,这样,就能获得这个UIButton所在的UITableViewCell。2. 在ViewController中添加响应 第二种方法时在- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;      方法中直接给UIButton添加响应。实现如下,-(UITableViewCell *)tableView:(UITableView *)atableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{  CustomCell *cell = [atableView dequeueReusableCellWithIdentifier:@"CustomCell"];  [cell.button addTarget:self action:@selector(didTapButton:)   forControlEvents:UIControlEventTouchUpInside];return cell;}      那么点击button时就会调用- (void)didTapButton:(UIButton *)sender      剩下的就是如何通过这个sender获得它所在的cell。我们这么实现这个方法,- (void)didTapButton:(UIButton *)sender{  CGRect buttonRect = sender.frame;  for (CustomCell *cell in [tableView visibleCells])  {    if (CGRectIntersectsRect(buttonRect, cell.frame))    {      //cell就是所要获得的    }  }}

 

转载于:https://www.cnblogs.com/niit-soft-518/p/4324168.html

你可能感兴趣的文章
Redis内存存储
查看>>
思维导图局域网共享功能使用教程
查看>>
【WebGoat 学习笔记】--3.试用中出现的问题汇总及解决办法
查看>>
awk 里的substr()
查看>>
python 使用装饰器模式 保证带有默认值的参数不被修改默认值
查看>>
NIOS知识一
查看>>
记录magento通过csv文件与zip(图片压缩)上传产品到数据库的过程
查看>>
BZOJ_3039_玉蟾宫_(动态规划+悬线法)
查看>>
Struts2 OGNL 自动转换Date类型的一些注意事项
查看>>
vue-cli + webpack自动生成项目
查看>>
定义Bash提示符中显示IP
查看>>
两个div如何并列 (转)
查看>>
SSH2框架下数据库语句的编写格式(一)
查看>>
返回结果数据帮助类
查看>>
SVN部署和使用
查看>>
Build Tools
查看>>
Mysql的基础使用之MariaDB安装
查看>>
单链表操作B 分类: 链表 2015-06-0...
查看>>
周赛-Heros and Swords 分类: 比赛 ...
查看>>
Error:No suitable device found: no device found for connection "System eth0"
查看>>