当前位置: 代码迷 >> Iphone >> UITableViewCell,该怎么解决
  详细解决方案

UITableViewCell,该怎么解决

热度:200   发布时间:2016-04-25 05:53:21.0
UITableViewCell
我创建了一个UITableViewCell,然后在cell的每一行添加2个button,请问怎样才能获取到每个button,并且点击不同的button响应不同的事件,求救!!最好有代码和说明,3Q

------解决方案--------------------
button.tag        button.titleLabel.text 都可以
------解决方案--------------------
给每个button设置tag值。根据这个tag值可以取到这个button
UIButton *btn=[self.view viewWithTag:tag];


每个button都可以使用
[button addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside];

来添加点击button后的事件处理