我試圖將數據從以前的版本遷移到實際的數據格式。當應用程序執行此操作時,我想呈現一個顯示等待消息(或進度,尚未決定...)的視圖。從didFinishLaunchingWithOptions呈現模態視圖
目前我正在計算何時在方法AppDelegate didFinishLaunchingWithOptions
中遷移,然後我想呈現該視圖模態。但它根本不起作用。
我試圖
[navigationController pushViewController:viewController animated:YES]; // works in a way, but it's not modal and it navigates sideways
[navigationController presentModalViewController:viewController animated:YES]; // does nothing.
我還搜查這個論壇,發現關於TabViewController一些答案。我試圖適用於我的情況下,甚至試圖:
[window addSubview:viewController.view];
[window makeKeyAndVisible];
這不正是什麼。有任何想法嗎?
感謝,
馬克
你有想過嗎? –
嗯......我裝了一個故事板,並在那裏做了所有事情(還有處理加載原始故事板)。 –