我需要在 iOSUITableView
中获取索引。UILongPressGestureRecognizer
首先,我UILongPressGestureRecognizer
使用以下代码添加并检索所选行的索引路径。
- (void)handleLongPress : (UILongPressGestureRecognizer *)ges
{
NSIndexPath *indexPath = [self.tblMainTableView indexPathForSelectedRow];
NSLog(@"%i",indexPath.row);
}
当我点击第三行时UITableView
,它只会返回0
并始终返回0
我点击 tableView 的任何地方。
我怎样才能得到索引表视图UILongPressGestureRecognizer
?
感谢您的任何建议和帮助。