程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> delegate-用mainstroyboard代替xib文件

delegate-用mainstroyboard代替xib文件

編輯:編程綜合問答
用mainstroyboard代替xib文件

目前工程在app delegate中使用MainWindow.xib當作主要的nib文件,在main.m文件中的代碼:

int main(int argc, char *argv[]) {

NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}

享用Mainstoryboard代替,在info.plist文件中修改時報錯:

there is no app delegate set. An app delegate class must be specified to use a main storyboard file

請高手解惑。

最佳回答:


在xcode中,點擊左側的project,找到Summary 頁簽項,在iphone/ipod deployment info 欄下找到Main Storyboard :在右邊下拉中選擇你的Storyboard文件。同時把Main Interface 右側下拉列表中的內容清空。

導致你上述問題的根本原因是,你的main函數中未指明應用的AppDelegate.一般的main函數為系統生成,不需要修改。默認應該如下。

int main(int argc, char *argv[])
{
    @autoreleasepool {
        return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
    }
}

在上述代碼中指明了AppDelegate類為應用程序的代理類。而在你的上述代碼中並沒有指明是哪個.

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved