I am fetching some data across web and want to display in tableview .And i fetching this data as soon the view will appear

using :-(void)ViewWillAppear:(Bool)animated method.

I am performing this all fetching process in background thread .

and want to display this data in my table view .

So now my problem is that cellForRowIndex method not get called .

What can be solution for this .So that when i after fetching the data it get displayed on the table view.

link|improve this question

68% accept rate
feedback

2 Answers

up vote 0 down vote accepted

First check your TableView links with delegate and DataSource and then Try. and everytime when you come back to ur view write.

-(void)ViewWillAppear:(Bool)animated

{

[self.tableView reloadData];

}

link|improve this answer
i set datasource and delegate to my tableview in viewdidload – user968597 Dec 9 '11 at 11:11
can you show me some more code for- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath – user1061841 Dec 12 '11 at 4:35
feedback

to reload table you should call reloadData. Also, - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath will only get called if you set dataSource for your UITableView

link|improve this answer
i already set datasource for tableview in viewDidLoad – user968597 Dec 9 '11 at 11:14
my set statement is .... tableView.dataSource=self; is it correct or do i need to set to something else – user968597 Dec 9 '11 at 11:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.