0
我剛建立了一個小應用程序來測試以編程方式更改視圖的使用,所以我在故事板和我的兩個類中都有我的兩個視圖。 現在我想要的是,當我點擊我的ViewController中的按鈕,它顯示了RedViewController。但是當我點擊這個按鈕時,我只能黑屏。 有沒有人有一個想法如何解決這個問題?iOS 6 presentviewcontroller顯示黑屏
-(IBAction)showred:(id)sender{
RedViewController *viewController = [[RedViewController alloc] init];
[self presentViewController:viewController animated:YES completion:nil];
}
感謝邁克爾
檢查你的RedViewController,也許你錯過了xib或沒有加載控件 – Madman 2013-02-28 18:57:48
我的故事板中有RedViewController接口,並且它連接到RedViewController,所以這不是問題。 – 2013-02-28 19:06:31