iOS升级14.1后,WKWebView无法自动吊起系统相机和相册

最近手机系统升级14.1后,发现项目中用到的web网页无法吊起系统相册,原本以为是权限问题;

后来经研究发现,是之前适配系统的时候再父类里写了个present方法;注释了这个方法就没问题了;

- (void)presentViewController:(UIViewController*)viewControllerToPresentanimated:(BOOL)flagcompletion:(void(^)(void))completion

{

    dispatch_async(dispatch_get_main_queue(), ^{        viewControllerToPresent.modalPresentationStyle = UIModalPresentationOverFullScreen;

        [super presentViewController:viewControllerToPresentanimated:flagcompletion:completion];

    });

}

具体什么原因,暂时还不清楚,如果有哪位大佬知道请告知,谢谢!

Web端的主要代码就下面这句: 点击button

你可能感兴趣的:(iOS升级14.1后,WKWebView无法自动吊起系统相机和相册)