我有一個部分,我的tableView一排,我需要創建一個指向該小區,所以我可以比編輯他獲取單元格指針從部分和一行的tableView
我有這樣的事情:
NSIndexPath *swipedIndexPath = [self.tableView indexPathForRowAtPoint:swipeLocation];
UITableViewCell* swipedCell = [self.tableView cellForRowAtIndexPath:swipedIndexPath];
但indexPath現在是根據某個觸摸位置,我想創建一個給定的部分和行。
謝謝。