适配13.0以上presentViewController跳转方式
写在PCH宏定义文件里就可以
//>>>>>>>>> //适配present 13.0
#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_13_0
if (@available(iOS 13.0, *)) {
viewController.modalPresentationStyle = UIModalPresentationFullScreen;
}
#endif
//******/