我的tableView有一个部分和一行,我需要创建一个指向该单元格的指针,所以我可以编辑它
我有这样的事情:
NSIndexPath *swipedIndexPath = [self.tableView indexPathForRowAtPoint:swipeLocation];
UITableViewCell* swipedCell = [self.tableView cellForRowAtIndexPath:swipedIndexPath];
但indexPath现在是根据某个触摸位置,我想用给定的部分和行创建它。
感谢。
答案 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];
简单...... ..)