我的iPhone應用程序運行在iPhone模擬器和設備上,但不是在iPad模擬器上。它沒有顯示任何錯誤,但應用程序沒有啓動只是空白的黑屏只顯示。iphone應用程序不工作ipad模擬器
雖然在ipad模擬器運行5它表示以下錯誤「的應用預期具有在應用程序啓動的端部的根視圖控制器」
我的應用程序didFinishLaunchingWithOptions代碼是如下:
rootViewController = [[RootViewController alloc] initWithNibName:@"RootViewController" bundle:nil];
[self.rootViewController.view setFrame:CGRectMake(0, 20, 320, 460)];
[self.window addSubview:self.rootViewController.view];
[self.window makeKeyAndVisible];
return YES;
我的main.m代碼如下:
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
這是什麼問題?
當你開始你的應用程序時,你選擇了一個通用的應用程序?如果是,您是否實施了iPad視圖? – alinoz