Answers:
NSIndexPath *selectedIndexPath = [tableView indexPathForSelectedRow];
*selectedIndexPath
我有机会获得它是有用的long pathRow = [selectedIndexPath row];
,并long pathSection = [selectedIndexPath section];
当您需要特定的选择(注意,NSInteger
是typedef long
从一个C的背景来使,因为双方都需要更多的意义%ld
呢。
使用此代码
CGPoint location =[sender locationInView:self.tableView];
NSIndexPath *swipedIndexPath = [self.tableView indexPathForRowAtPoint:location];
UITableViewCell *swipedCell = [self.tableView cellForRowAtIndexPath:swipedIndexPath];
NSIndexPath *indexPath = [self.tableView indexPathForCell:swipedCell];
在didSelectRowAtIndexPath中,将一个声明为NSIndexPath的接口设置为返回的索引路径。然后,您可以滚动到该变量。如果您需要帮助,请发表评论,我可以提供一些示例代码。