我有下面的代碼從一個UIViewController轉換到一個帶故事板的UIViewController。UIViewController轉換爲黑色
#import "How_FarViewController.h"
MainViewController *screen = [[MainViewController alloc] initWithNibName:nil bundle:nil];
screen.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:screen animated:YES];
但是,當我去按它它做一個翻轉動畫,只顯示黑色。我的問題是什麼?
感謝, SebOH
非常感謝回覆。故事板視圖和「MainViewController」是獨立的.xib's。 –
從技術上講,故事板不是XIB。它是一個管理「場景」的容器。場景由視圖對象層次結構和視圖控制器組成,用於管理根視圖。它像XIB一樣用來定義哪些對象被實例化,然後通過您定義的規則來關聯它們。但故事板的真正優勢在於能夠在很少或沒有代碼的場景之間轉換。 – Rob
如果此答案有幫助,請將其標記爲已回答。謝謝。 – Rob