[tableView reloadData]
はiosの性能に影響しますか? [tableView reloadData]
とは何ですか?それはどのようにテーブルビューをリロードしていますか?テーブルビューをリロードする他の方法はありますか?ios:[tableView reloadData]
テーブルビューの最後にいくつかの行を追加したいとします。これどうやってするの?
[self.tableView reloadData]
と
[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:insertIndexPathswithRowAnimation:UITableViewRowAnimationAutomatic];
[self.tableView endUpdates];
これは、すべてのウェルの[標準の場所]に記載されている(http://developer.apple.com/library/ios/#ドキュメント/ユーザーエクスペリエンス/概念/ TableView_iPhone/ManageInsertDeleteRow/ManageInsertDeleteRow.html#// apple_ref/doc/uid/TP40007451-CH10-SW1)。 –
Appleのドキュメントをご覧ください:https://developer.apple.com/documentation/uikit/uitableview –