How can we check for UITableView finishes reloading..
Actually I want to call other function after successfully reload UITableView, using this
[tableview reloadData] we can’t do this.. I had write this code
[tableView performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:YES];
Please help me to solve this problem..
Thanks in advance.
Reloading of
tableViewtakes place in other threads. Refer this for hack to achieve this:Show tableView popover as soon as data is loaded