从tableView的section和row获取单元格指针

时间:2014-03-26 09:10:44

标签: objective-c

我的tableView有一个部分和一行,我需要创建一个指向该单元格的指针,所以我可以编辑它

我有这样的事情:

NSIndexPath *swipedIndexPath = [self.tableView indexPathForRowAtPoint:swipeLocation];
 UITableViewCell* swipedCell = [self.tableView cellForRowAtIndexPath:swipedIndexPath];

但indexPath现在是根据某个触摸位置,我想用给定的部分和行创建它。

感谢。

2 个答案:

答案 0 :(得分:1)

使用section和row获取索引路径使用此NSIndexPath *swipedIndexPath = [NSIndexPath indexPathForRow:<rowIndex> inSection:<sectionIndex>]

希望这会对你有所帮助。

答案 1 :(得分:1)

NSIndexPath *swipedIndexPath = [NSIndexPath indexPathForRow:<rowIndex> inSection:<sectionIndex>]
UITableViewCell* swipedCell = [self.tableView cellForRowAtIndexPath:swipedIndexPath];

简单...... ..)