I created my app using Utility Application template in Xcode 4.
I want my app to display the flip side on the first launch so that the user can enter a URL.
In my mainViewController I have:
- (void)viewDidAppear:(BOOL)animated
{
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
if(![defaults stringForKey:@"url"]){
// Flip to the back page
[self showInfo: self];
NSLog(@"No url, flip");
}else{
NSLog(@"dont flip");
}
}
- (IBAction)showInfo:(id)sender
{
FlipsideViewController *controller = [[FlipsideViewController alloc] initWithNibName:@"FlipsideView" bundle:nil];
controller.delegate = self;
controller.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:controller animated:YES];
[controller release];
}
"No url, flip" is logged, and the showInfo method is called, but it does not flip. What am I doing wrong?
showInfo:. – Nekto Sep 9 '11 at 19:18