程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-appDelegate方法出現了錯誤

ios-appDelegate方法出現了錯誤

編輯:編程綜合問答
appDelegate方法出現了錯誤

appDelegate.m文件在運行樣本時候中止

self.view.controller=root.view.controller 

請幫忙加下面的代碼:

-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    /* 這行出錯了 */
    self.window.rootViewController=self.viewController;
    [self.window makeKeyAndVisible];
    return YES;
}

最佳回答:


ios4之前的版本沒有UIWindow rootViewController。如果要在ios3或者之前的版本運行的話,就會崩潰。

在你的appdelegate中使用addsubbiew代替:

//self.window.rootViewController = self.viewController; // Only iOS >= 4 [self.window addSubview:self.viewController.view]; [self.window makeKeyAndVisible]; return YES
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved