我已经使用自定义单元格设置了一个表格视图:-
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{SWHNearYouCell *cell = (SWHNearYouCell *)[tableView
dequeueReusableCellWithIdentifier:@"NearYouCell"];
SWHNearYou *aPointer = [self.thingsNearYou objectAtIndex:indexPath.row];
cell.customNearYouLabel.text = aPointer.restrauntsNearYou;
return cell;
}
我想在按下按钮时更改 customNearYouLabel 的文本,但要弄清楚如何在我的 -IBAction 方法中获取指向单元格的指针。
谢谢