UITableView Reload Data
Posted
by william-hu
on Stack Overflow
See other posts from Stack Overflow
or by william-hu
Published on 2010-05-19T02:40:25Z
Indexed on
2010/05/19
3:10 UTC
Read the original article
Hit count: 258
iphone-sdk-3.0
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!
© Stack Overflow or respective owner