XWTransition
XWTransition copied to clipboard
iOS 11之后转场dismiss页面时出现黑屏问题处理
你好,在iOS13后,由于presentViewController方法默认modalPresentationStyle为UIModalPresentationAutomatic,导致dissmiss页面出现黑屏,需要对库作如下修改:
文件:UIViewController+XWTransition.m 方法:xw_presentViewController: 修改: viewController.modalPresentationStyle = UIModalPresentationFullScreen;//增加内容 [self presentViewController:viewController animated:YES completion:nil];
大佬呀解决问题了~