我可以獲取一個點擊按鈕的cell的索引路徑,
- (IBAction)buttonWasPressed:(id)sender
{
CGPoint buttonPosition = [sender convertPoint:CGPointZero toView:self.tableView];
NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:buttonPosition];
}
現在我想訪問cell的屬性,應該怎麼實現?類似- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
既然你已經拿到了indexPath, 得到這個cell可以用下面的代碼
UITableViewCell *cell=[self.tableView cellForRowAtIndexPath:indexPath];