0
可能重複:
Is it possible to refresh a single UITableViewCell in a UITableView?重新加載特定的UITableView單元格的數據
很抱歉,如果這個問題是愚蠢的,但不是使用[mytableview reloaddata]
,我們如何能夠重新加載只有特定UITableViewCell
的數據。
可能重複:
Is it possible to refresh a single UITableViewCell in a UITableView?重新加載特定的UITableView單元格的數據
很抱歉,如果這個問題是愚蠢的,但不是使用[mytableview reloaddata]
,我們如何能夠重新加載只有特定UITableViewCell
的數據。
你想要UITableView的reloadRowsAtIndexPaths: withRowAnimation:
方法。我已經爲你鏈接了文檔。
您需要提供的全部內容是要重繪的單元的索引路徑。
下面的答案是正確的。請善待接受它。 –