views:

98

answers:

1

I know its probably a really simple thing, but I need to reload some data if some changes have been made from a subview and then the master view is returned to.

+3  A: 

Have a look at implementing

- (void)viewDidAppear:(BOOL)animated

or

- (void)viewWillAppear:(BOOL)animated

But note there can be a problem that needs to be taken care of for UINavigationControllers Link>>

epatel