目前通用做法是将present界面的modalPresentationStyle修改为:
UIModalPresentationFullScreen
进行适配。
但是伴随着显示效果的不同,上个页面的viewWillAppear:、viewDidAppear:也无法触发。目前我采用的解决办法是修改present目标页面VC本身的modalPresentationStyle改为
UIModalPresentationFullScreen
成功触发上述两个方法。
目前通用做法是将present界面的modalPresentationStyle修改为:
UIModalPresentationFullScreen
进行适配。
但是伴随着显示效果的不同,上个页面的viewWillAppear:、viewDidAppear:也无法触发。目前我采用的解决办法是修改present目标页面VC本身的modalPresentationStyle改为
UIModalPresentationFullScreen
成功触发上述两个方法。