Velmurugan
Velmurugan

Reputation: 2303

Dynamically create Grouped UITableview sections in run time

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

Answers (1)

Cory Kilger
Cory Kilger

Reputation: 13044

Look at -[UITableView insertRowsAtIndexPaths:withAnimation:] as well as the other insert/delete cell methods.

Upvotes: 4

Related Questions