Reputation: 2303
I want to create grouped table as dynamically. My aim is creating sections as dynamically in run time in UITableview. In same time I will maintain all data in NSArray.
Upvotes: 1
Views: 831
Reputation: 13044
Look at -[UITableView insertRowsAtIndexPaths:withAnimation:]
as well as the other insert/delete cell methods.
Upvotes: 4