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: 233

Filed under:

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

Related posts about iphone-sdk-3.0