UITableViewCell 上的按钮点击事件

时间:2021-03-11 04:45:03

    以前做tableViewCell的button点击事件,总是建立一个全局的可变数组,把data放在数组里,点击获取button的tag值,根据tag从数组了里取data。

其实,如果section只有一个的时候,可以直接获取点击的路径来点击的cell。

   NSIndexPath *selectIndexPath = [NSIndexPath indexPathForRow:tag_value inSection:];//因为table只有一个section

   2 UITableViewCell * selectCell = (UITableViewCell *)[self.table cellForRowAtIndexPath:selectIndexPath];

      如果有多个section的时候怎么办呢?

      我想到一个比较笨的方法, section i ,row j :  button的tag =   i*1000  + j ;

   NSIndexPath *selectIndexPath = [NSIndexPath indexPathForRow:(tag_value%) inSection:(tag_value/)];  

 

如果您想到更好的方法,欢迎留言讨论~