我有一段代碼,其中的UITableView委託。我希望用於編輯表格中的行的功能。當用戶點擊一行時,打開shouldChangeTextInRange。當前行授權UITableView隱藏行
通過以下代碼,我可以控制該行的編輯。這工作正常。
textView.text = ((ANFreeEditCell*)[self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:[self.tableView indexPathForCell:cell].row inSection:0]]).getTekst;
也可能表中的底部行之一被編輯。在這種情況下,鍵盤窗口放置在表格頂部,self.tableView indexPathForCell:cell].row
返回零行(0)。
didSelectRowAtIndexPath永遠不會被調用。
如何訪問這些行?
...代碼示例可能不錯? –
這看起來很有希望。謝謝! – Vincent