UIViewController custom transition stuck on iOS13

前端 未结 4 2070
长发绾君心
长发绾君心 2021-02-05 11:42

I\'ve implemented a custom transition between two view controllers in my iOS app and it worked fine with iOS 10, 11, and 12.

Now I want make it ready for iOS 13 using Xc

4条回答
  •  情深已故
    2021-02-05 11:54

    Ok, it was easy, even though, it's a breaking API change of Apple.

    viewController.modalPresentationStyle = .fullScreen
    

    Now I have to go through my whole project and check all modal presentations if they still look as I need them to.

提交回复
热议问题