wazrx / XWTransition

几句代码快速集成自定义转场效果+ 全手势驱动
Apache License 2.0
676 stars 146 forks source link

iOS 11之后转场dismiss页面时出现黑屏问题处理 #16

Open ShaochongDu opened 4 years ago

ShaochongDu commented 4 years ago

你好,在iOS13后,由于presentViewController方法默认modalPresentationStyle为UIModalPresentationAutomatic,导致dissmiss页面出现黑屏,需要对库作如下修改:

文件:UIViewController+XWTransition.m 方法:xw_presentViewController: 修改: viewController.modalPresentationStyle = UIModalPresentationFullScreen;//增加内容 [self presentViewController:viewController animated:YES completion:nil];

effortwdh commented 3 years ago

大佬呀解决问题了~