4

我有表格视图。对于我设置了标签值的特定单元格,现在,在我的方法中,我正在接收索引路径,如何使用索引路径访问 cell.tag。

4

2 回答 2

13
UITableViewCell *cell = [theTableView cellForRowAtIndexPath:theIndexPath];
NSInteger tag = cell.tag;

我希望这有帮助。

于 2012-08-10T12:18:07.167 回答
2
int yourCellsTag = [[yourTableView cellForRowAtIndexPath:indexPath] tag];
于 2012-08-10T12:19:35.870 回答