I have implemented a UIModalPresentationFormSheet in my iPad application. The new view partially covers the sub view and allows the user to make a choice. This all works great, however...

When the user selects an option I would like to update the underlying view with the new details, but cannot get it to work!

I have tried using setNeedsDisplay or [table reloadData]; in both the viewDidAppear and viewWillAppear methods.

Some code for codes sake:

- (void)viewWillAppear:(BOOL)animated {
    [self updateUserDetails];
    [self.myTableView reloadData];
}

- (void)viewDidAppear:(BOOL)animated {
    [self updateUserDetails];   
    [self.myTableView reloadData];
}

- (void)updateUserDetails {
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    [defaults setObject:selection forKey:@"userDetail"];
}

My transition is as follows. If this line is commented out then the application functions as expected:

myNavigationController.modalPresentationStyle = UIModalPresentationFormSheet;

Any help appreciated, thanks!

link|improve this question

70% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.