2012-02-25 52 views

回答

6

的UITableView有它給你一個特定的單元格的索引路徑的方法:

NSIndexPath *path = [self.tableView indexPathForCell:cell]; 
return path.section; 

注意,這將返回一個整數,而不是字符串。

2

使用的UITableView實例方法:

- (NSIndexPath *)indexPathForCell:(UITableViewCell *)cell