ios 获取当前或指定的cell

我们就给cell一个代理方法

[objc]  view plain  copy
  1. // 点击按钮  
  2. - (IBAction)click:(UIButton *)sender {  
  3.       
  4.     if ([self.delegate respondsToSelector:@selector(MKJTableView:clickButton:)]) {  
  5.         [self.delegate MKJTableView:self clickButton:sender];  
  6.     }  
  7. }  
让Controller实现这个代理

[objc]  view plain  copy
  1. // cell的代理方法  
  2. - (void)MKJTableView:(MKJTableViewCell *)cell clickButton:(UIButton *)touchBtn  
  3. {  
  4.      
  5. }  



  1. // 这里的2和0可以根据需要求更改 这里就是第0段,第2行  
  2. NSIndexPath *  indexPath = [NSIndexPath indexPathForRow:2 inSection:0];  
  3. UITableViewCell * cell = [self.tableView cellForRowAtIndexPath:indexPath];  

你可能感兴趣的:(iOS)