iOS 11打开系统相册列表向上偏移问题

来源:互联网 发布:淘宝热卖t恤 编辑:程序博客网 时间:2024/05/16 08:11

问题如图
这里写图片描述

该问题是因为设置了

if (@available(iOS 11, *)) {        UIScrollView.appearance.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;    }

引起的。

解决方案
在弹出系统相册前加入

 if (@available(iOS 11, *)) {        UIScrollView.appearance.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentAutomatic;    }
 UIImagePickerController *ipc = [[UIImagePickerController alloc] init];    ipc.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;    ipc.delegate = self;    ipc.allowsEditing = YES;    if (@available(iOS 11, *)) {        UIScrollView.appearance.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentAutomatic;    }    [self presentViewController:ipc animated:YES completion:nil];

在 - (void)imagePickerController:(UIImagePickerController )picker didFinishPickingMediaWithInfo:(NSDictionary

if (@available(iOS 11, *)) {        UIScrollView.appearance.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;    }

就解决了!!!

原创粉丝点击