2014-03-26 52 views
1

我有一個部分,我的tableView一排,我需要創建一個指向該小區,所以我可以比編輯他獲取單元格指針從部分和一行的tableView

我有這樣的事情:

NSIndexPath *swipedIndexPath = [self.tableView indexPathForRowAtPoint:swipeLocation]; 
UITableViewCell* swipedCell = [self.tableView cellForRowAtIndexPath:swipedIndexPath]; 

但indexPath現在是根據某個觸摸位置,我想創建一個給定的部分和行。

謝謝。

回答

1

爲獲得使用部分和行使用此NSIndexPath *swipedIndexPath = [NSIndexPath indexPathForRow:<rowIndex> inSection:<sectionIndex>]

希望這有助於你的索引路徑。

1
NSIndexPath *swipedIndexPath = [NSIndexPath indexPathForRow:<rowIndex> inSection:<sectionIndex>] 
UITableViewCell* swipedCell = [self.tableView cellForRowAtIndexPath:swipedIndexPath]; 

這麼簡單.. :)

相關問題