你好,在iOS13后,由于presentViewController方法默认modalPresentationStyle为UIModalPresentationAutomatic,导致dissmiss页面出现黑屏,需要对库作如下修改:
文件:UIViewController+XWTransition.m
方法:xw_presentViewController:
修改:
viewController.modalPresentationStyle = UIModalPresentationFullScreen;//增加内容
[self presentViewController:viewController animated:YES completion:nil];
你好,在iOS13后,由于presentViewController方法默认modalPresentationStyle为UIModalPresentationAutomatic,导致dissmiss页面出现黑屏,需要对库作如下修改:
文件:UIViewController+XWTransition.m
方法:xw_presentViewController:
修改:
viewController.modalPresentationStyle = UIModalPresentationFullScreen;//增加内容
[self presentViewController:viewController animated:YES completion:nil];