导航看起来像幻灯片
Navigation look like slide show
我的问题: 我必须编辑 swift 代码,但我遇到一个问题,即导航仅在新的 iphone 设备中看起来像幻灯片放映,但是当我使用旧的 iphone 时,我不会遇到这个问题。
问题图片:
旧 Iphone :
新 Iphone :
您需要将要呈现的 ViewController 的 modalPresentationStyle
更改为 .fullScreen。
viewControllerToBePresented.modalPresentationStyle = .fullScreen
我的问题: 我必须编辑 swift 代码,但我遇到一个问题,即导航仅在新的 iphone 设备中看起来像幻灯片放映,但是当我使用旧的 iphone 时,我不会遇到这个问题。
问题图片:
旧 Iphone :
新 Iphone :
您需要将要呈现的 ViewController 的 modalPresentationStyle
更改为 .fullScreen。
viewControllerToBePresented.modalPresentationStyle = .fullScreen