Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am calling a settings page as a form sheet over a viewController using the following code:

NSUserDefaults *standardUserDefaults = [NSUserDefaults standardUserDefaults];
NSString *device = [standardUserDefaults objectForKey:@"Device"];
if ([device isEqualToString:@"iPhone"]) {
    Settings_iPhone *screen = [[Settings_iPhone alloc] initWithNibName:nil bundle:nil];
    screen.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
    [self presentModalViewController:screen animated:YES];
    [screen release];
}
if ([device isEqualToString:@"iPad"]) {    
    Settings_iPhone *screen = [[Settings_iPhone alloc] initWithNibName:@"Settings_iPad" bundle:nil];
    screen.modalPresentationStyle = UIModalPresentationFormSheet;
    screen.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
    [self presentModalViewController:screen animated:YES];
    [screen release];
}

When the settings page is called and dismissed, viewDidAppear and viewWillAppear are not called on the original page only on the iPad. On the iPhone, since its not a formsheet, it works perfectly, and furthermore when I call the settings page on the iPad as a regular modal view instead of a form sheet, they both get called. Please help. Thanks!

share|improve this question
Well you can use the delegate to accomplish your task which you wanted to do in your viewDidAppear/viewWillAppear. or else look at useyourloaf.com/blog/2010/5/3/ipad-modal-view-controllers.html to understand complete scenario how ModalViewController works. – Praveen-K May 22 '12 at 18:31
basically, if the settings updates any values, I need those values to be updated on the screen, so how would I be able to do that? – Prajoth May 22 '12 at 18:41
Read about KVO .. – Praveen-K May 22 '12 at 19:08
and there is no way to do this using viewDidAppear? i have to use notifications? – Prajoth May 22 '12 at 19:18
I will suggest you to use delegate. – Praveen-K May 22 '12 at 19:45
show 1 more comment

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.