views:

283

answers:

2

Hi, I'm stack on refreshing view in TabBar. The UIView is read only first time I pressed the TabButton and does not "viewDidLoad" next time. I want to refresh UITableView every time I pressed the button.

Thank you!

A: 

Ya, well thats also my problem, I am looking for a way how i can refresh the data (on which my view is based on) can be refreshed by pressing the TabButton after some time again....did you find a way?

regards

A: 

Ok Found a solution (just right after i posted this here)

add:

- (void)viewWillAppear:(BOOL)animated
{
    NSLog(@"View appears");
}

to your ViewController and you will see that this method will be called, by clicking the TabButton ;)