※ 引述《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 架构规划,可能需要尝试可行的写法。