Anshuman Mishra
Anshuman Mishra

Reputation: 189

How we update UITableView on Row Did Select?

I am using a Table View, I want when the user click on the row Table reload itself and show the new data on the same Table.

Upvotes: 0

Views: 268

Answers (2)

bitmapdata.com
bitmapdata.com

Reputation: 9600

[self.tableView reloadData];

this code is you want it?

Upvotes: 1

rckoenes
rckoenes

Reputation: 69469

That is not what a user would suspect to happen, why not use an UINavigationController and push a new UIViewController on the stack with the new data.

Upvotes: 1

Related Questions