【发布时间】:2018-03-31 21:55:22
【问题描述】:
当我从纵向模式下的UINavigationController 切换到UIViewController 到横向模式时,我想旋转方向,但它不起作用。
我试过了
(UIApplication.shared.delegate as! AppDelegate).window!.rootViewController = playModeVc
但我可以纵向看到下一个 viewController,但我想在横向模式下看到它。当我使用
present(playModeVc, animated: true, completion: nil)
它不会释放内存。
我想在切换 viewController 时释放内存。我该怎么做?
【问题讨论】:
标签: ios swift uinavigationcontroller viewcontroller