回答:
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を宣言したインターフェースを、返されるインデックスパスとして設定します。次に、その変数までスクロールできます。助けが必要な場合はコメントしてください。サンプルコードをいくつかあげます。