美文网首页
相册返回按钮不灵敏问题记录

相册返回按钮不灵敏问题记录

作者: Mooners | 来源:发表于2020-06-10 17:39 被阅读0次
- (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated {
    if ([UIDevice currentDevice].systemVersion.floatValue < 11) {
        return;
    }
    if ([viewController isKindOfClass:NSClassFromString(@"PUPhotoPickerHostViewController")]) {
        [viewController.view.subviews enumerateObjectsUsingBlock:^(__kindof UIView * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
            if (obj.frame.size.width < 42) {
                [viewController.view sendSubviewToBack:obj];
                *stop = YES;
            }
        }];
    }
}

相关文章

网友评论

      本文标题:相册返回按钮不灵敏问题记录

      本文链接:https://www.haomeiwen.com/subject/dhghyctx.html