정의한 함수에서 테이블의 행 1을 삭제해야합니다. 사용 deleteRowAtIndexPath
하려면 IndexPath
섹션과 행이 정의 된 with 를 사용해야합니다 . 이와 같은 인덱스 경로를 어떻게 만들 수 있습니까?
int가 {1} 인 유일한 배열은 배열이 충돌합니다. NSLog 메시지는 섹션도 정의해야 함을 나타냅니다.
* 편집-> 셀 삭제 관련 코드 :
NSIndexPath *myIP = [[NSIndexPath alloc] indexPathForRow:0 inSection:0];
NSArray *myArray = [[NSArray alloc] initWithObjects:myIP, nil];
// [self.tableView beginUpdates];
[self.tableView deleteRowsAtIndexPaths:myArray withRowAnimation:UITableViewRowAnimationFade];
// [self.tableView endUpdates];