Wednesday 30 January 2013

How to reload table view data from custom table cell view in iPhone?

Often we create a custom table cell view for our table view cells and if we are required to reload our table view from our custom table cell view's method then we can do it using the following.
syntax:
UITableView *tableView = (UITableView *) self.superview;
[tableView reloadData];

No comments:

Post a Comment