iOS菜鸟学习——UIButton响应传参数

iOS菜鸟学习——UIButton响应传参数

- (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就是所要获得的
    }
  }
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值