1
如果代碼在下面的行中有錯誤。當我在ipad上運行應用程序時,它會在模擬器上正常工作時生成此錯誤。在[self.window makeKeyAndVisible]中運行iPad上的應用程序時出現Sigabrt錯誤?
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
// Override point for customization after application launch.
self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController" bundle:nil] autorelease];
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];
return YES;
}
請詳細說明產生此錯誤的原因。
什麼是你的目標,你爲什麼不使用ARC? –
謝謝Anoop我得到了解決方案。我沒有確定發展目標。非常感謝你的回覆。 – Nauman
所以我應該發佈這個答案? –