I am developing an app in iPhone,before making few changes the Simulator was working fine.After implementing the changes,when I have built the app but when I am building it,it says build succeeded but the iPhone as Simulator is not visible. Any hints ?
Console Output
2012-11-08 12:06:08.089 MyApp[743:f803] IT IS COMING HERE
2012-11-08 12:06:08.093 MyApp[743:f803] IT IS COMING HERE 1
2012-11-08 12:06:08.094 MyApp[743:f803] IT IS COMING HERE 2
(lldb)
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
NSLog(@"IT IS COMING HERE");
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
NSLog(@"IT IS COMING HERE 1");
// Override point for customization after application launch.
self.viewController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];
NSLog(@"IT IS COMING HERE 2");
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];
NSLog(@"IT IS GOING FROM HERE");
return YES;