getting a view?
So I believe I almost have it...i am creating a nag screen.......
- (void)applicationDidFinishLaunching:(UIApplication *)application {
NSString *number1 = [[NSUserDefaults standardUserDefaults] stringForKey:@"mobilefieild"];
NSString *name1 = [[NSUserDefaults standardUserDefaults] stringForKey:@"firstnamefield"];
if ((number1 == nil) || (name1 == nil)) {
[self displayNagScreen:application];
}
else {
[self displayMyApp:application];
}
[window makeKeyAndVisible];
Above, I split the applicationDidFinishLaunching into two parts. Below, Is where they are told how to act. I just don't know how to pull up my settingsView xib in the -(void)displayNagScreen . Please help if you are able.
- (void)displayMyApp:(UIApplication *)application {
********lots of stuff here********
}
- (void)displayNagScreen:(UIApplication *)application {
********* ? *********
}
Thank you.
Posting Permissions
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
Forum Rules