UITableView Reload Data
- by william-hu
Hi, i used UITableView to show the info which was get for server.
- (void)viewWillAppear:(BOOL)animated {
//Create connection
}
Then i put the received data into array : NSSArray *dataFromServer:
Then i want to show the data on each cell (some NSString object).
As the connection was release, i call [self.tableView reloadData] , but cant work.
So i'd like to know, how to make this?
It means cellForRowAtIndexPath: has nothing at beginning, but after few seconds, shows something. Thank you so much!