質問

I have a tableview and at the time of viewDidLoad there are 20 rows. Now I have a button to add 1 more row data in table. At this time I don't want to reload the table and want to show updated table with last row. Is it possible? If yes then please help me out. Thanks.

役に立ちましたか?

解決

You can do it this way

[tableView beginUpdates];
[self.table insertRowsAtIndexPaths:path withRowAnimation:UITableViewRowAnimationRight];
[tableView endUpdates];
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top