
Untitled
By: a guest on
Aug 6th, 2012 | syntax:
None | size: 1.09 KB | hits: 24 | expires: Never
How to fix crash log error?
//line 53 is: [self.window makeKeyAndVisible];
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[self createEditableCopyOfDatabaseIfNeeded];
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.ViewController = [[MeetingMakerDetailViewController alloc] initWithNibName:@"MeetingMakerDetailViewController" bundle:nil];
self.window.rootViewController = self.ViewController;
[self.window makeKeyAndVisible];
return YES;
}
//line 53 is: [self.window makeKeyAndVisible];
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[self createEditableCopyOfDatabaseIfNeeded];
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.ViewController = [[MeetingMakerDetailViewController alloc] initWithNibName:@"MeetingMakerDetailViewController" bundle:nil];
self.window.rootViewController = self.ViewController;
[self.window makeKeyAndVisible];
return YES;
}