I'm writing an iPhone application which you need to authenticate at the beginning. Therefore as soon as the application load in the viewDidLoad i allocate a UIViewController which is in-charge of registration and authentication and i present it like so:
- (void)viewDidLoad {
[super viewDidLoad];
self.registerProfile = [[[RegisterViewController alloc] initWithNibName:@"RegisterProfile" bundle:nil] autorelease];
[self presentModalViewController:self.registerProfile animated:YES];
[self.registerProfile release];
}
For some reason it does not work when it is called from viewDidLoad. But if i create a button on that view and append the same code above, when i click it, it works and the view is presented.
Any idea why it does not work on viewDidLoad and with a button it does ?
I also tested an Apple example called NavBar. When a button is clicked it present a view using the presentModalViewController, when i added it to the ViewDidLoad it did not work!
What am i missing here ? I want that process to be automatically when the view loads and not by a push of a button.
Thanks!