2014-07-16 45 views
0

每當我用文本啓動應用程序時,我都會看到白屏(還有1個場景)。我已經嘗試重新制作並刪除此代碼。它是X的代碼和從所述預置「空的應用」當在構建中啓動時出現白屏

self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 
    // Override point for customization after application launch. 
    self.window.backgroundColor = [UIColor whiteColor]; 
    [self.window makeKeyAndVisible]; 

開始得到這個是在調試

2014年7月18日11:20:43.821壁紙[7635:60B]應用窗口被預期在應用程序啓動結束時擁有根視圖控制器

我希望看到一張表格,說明地址,我看到的只是一個白色屏幕。任何已知的原因?

+1

你能在「它不工作」展開?請解釋1)你的期望,2)你看到的是什麼。如果有錯誤信息,請顯示。不要在評論中回覆 - 編輯您的問題以添加它。 –

+1

好吧,我沒有,謝謝你的反饋@TarynEast – Rish

+0

你是否搜索了該錯誤消息?你發現了什麼? :) –

回答

0

你的UIWindow缺少根視圖控制器,即:

self.window.rootViewController = [[UIViewController alloc] init]; 
+0

除非我把它放在錯誤的區域,否則它不起作用 – Rish

+0

你把它放在哪裏,應該在makeKeyAndVisible之前。 –

+0

'self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; //覆蓋應用程序啓動後自定義的點。 self.window.backgroundColor = [UIColor whiteColor]; self.window.rootViewController = [[UIViewController alloc] init]; [self.window makeKeyAndVisible]; 返回YES;' – Rish

相關問題