I am trying to display a passcode/pincode (modal view controller) upon launching the app. You may see the code in AppDelegate.h :
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
if (![[NSUserDefaults standardUserDefaults] boolForKey:@"passcode_in"]) {
//display passcode screen
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UIViewController *vc = [storyboard instantiateViewControllerWithIdentifier:@"PasscodeViewController"];
[vc setModalPresentationStyle:UIModalPresentationFullScreen];
[self presentModalViewController:vc animated:NO];
} else {
NSLog(@"No Passcode Screen");
}
return YES;
}
The problem is that AppDelegate doesn't support to display a modal view controller (presentModalViewController). I am not going to use .xib files, only Storyboard for my app. Does anybody know what is wrong with it? Any suggestion appreciated.
RESOLVED
I followed the instruction given to one of my previous posted questions http://stackoverflow.com/a/10303870/1344459 I resolved the issue by only adding some code into two methods applicationDidEnterBackground and applicationWillTerminate in AppDelegate.m for PinCodeViewController(modal) upon launching app. Now it is working so smooth.