답변:
NSIndexPath *selectedIndexPath = [tableView indexPathForSelectedRow];
*selectedIndexPath
나에 액세스하는 것이 유용합니다 long pathRow = [selectedIndexPath row];
그리고 long pathSection = [selectedIndexPath section];
당신은 (주 특정 선택을 필요로 할 때 NSInteger
A는 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로 선언 된 인터페이스를 반환 된 indexpath로 설정합니다. 그런 다음 해당 변수로 스크롤 할 수 있습니다. 도움이 필요하면 댓글을 달면 샘플 코드를 줄 수 있습니다.