0
是否有可能只旋轉其中一個子vc?iOS只旋轉其中一個子視圖控制器
的xamarin代碼(這幾乎是一樣的SWIFT)
mainVC.addChildViewController(childVC_A);
mainVC.addChildViewController(childVC_B);
mainVC.addSubView(childVC_A.View);
mainVC.addSubView(childVC_B.View);
的mainVC
有shouldAutorotate
真實,GetSupportedInterfaceOrientations
返回所有方向;
我只希望childVC_A
自動旋轉到橫向模式,並且childVC_B
始終保持縱向模式。
childVC_A
具有shouldAutorotate
爲true
和GetSupportedInterfaceOrientations
返回所有的方向;
childVC_B
已將shouldAutorotate
設爲false
和GetSupportedInterfaceOrientations
僅返回肖像;
這可能嗎?
有沒有辦法強制subview/vc佈局,就好像它被旋轉到風景? – WindowsMaker
@zaftcoAgeiha您可以設置視圖控制器視圖的'transform'屬性來應用旋轉,是的。當然,您可以在[文檔](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIView_Class/#//apple_ref/occ/instp/UIView/transform)中瞭解該屬性。 –