※ 引述《areyo (沒有名字的怪物)》之銘言:
: 請問一下
: navigation view可以設定某些頁面可以旋轉,某些不轉嗎??
: 謝謝
1. 在 AppDelegate 的 application(_:supportedInterfaceOrientationsFor:)
從 window.rootViewController 出發,去判斷你的 vc
1) 要鎖死方向,就 return .portrait 或 .landscape
2) 或是丟給 vc 自己決定(見 2.),就 return [.landscape, .portrait]
2. 在 vc 覆寫 supportedInterfaceOrientations 這個 property
回傳想要鎖死的方向
視你的 app vc 架構規劃,可能需要嘗試可行的寫法。