1:
在AppDelegate.m設(shè)置了
if (@available(iOS 11.0, *)) {
? ? ? ? [[UIScrollView appearance] setContentInsetAdjustmentBehavior:UIScrollViewContentInsetAdjustmentNever];
}
2:
在打開相冊前設(shè)置
if (@available(iOS 11, *)) {
? ? ? ? UIScrollView.appearance.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentAutomatic;
}
3:
- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker
和
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info
方法中設(shè)置
if (@available(iOS 11, *)) {
? ? ? ? UIScrollView.appearance.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
}
以上三步設(shè)置完就正常了