美文网首页
iOS11 打开相册 内容上移了

iOS11 打开相册 内容上移了

作者: 小虾57 | 来源:发表于2018-08-31 14:53 被阅读0次

为了适配iOS11下来刷新下下偏移问题,全局设置了[UIScrollView appearance] 的ContentInsetAdjustmentBehavior为UIScrollViewContentInsetAdjustmentNever导致ScrollView向上偏移了,而在iOS11以下却没问题

if (@available(iOS 11.0, *)){

        [[UIScrollView appearance] setContentInsetAdjustmentBehavior:UIScrollViewContentInsetAdjustmentNever];

    }

解决办法:将导航条的毛玻璃效果去除掉就可以了

 UIImagePickerController *pickerController = [[UIImagePickerController alloc] init];

pickerController.editing = YES;

pickerController.delegate = self;

pickerController.allowsEditing = YES;

//    去除毛玻璃效果

pickerController.navigationBar.translucent = NO;

    pickerController.sourceType=UIImagePickerControllerSourceTypePhotoLibrary;

    [self presentViewController:pickerController animated:YES completion:nil];

相关文章

网友评论

      本文标题:iOS11 打开相册 内容上移了

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