我正在構建一個應用程序,它需要在啓動時從XML文件加載信息。在App Delegate中啓動時顯示加載屏幕
我打電話的取出方法,在AppDelegate
類的didFinishLaunchingWithOptions
方法:
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[self fetch];
return true;
}
但我想顯示的圖像時,應用程序的午餐,我希望它消失的時候抓取方法完成。
任何幫助,非常感謝!
你需要刪除你的'Default.png',創建一個帶有該Default.png圖像的UIImageView的UIViewController,在該viewContoller上加載XML,然後加載離開該viewController –