iOS11相册无法滑动到最顶部
在开发过程中发现iOS11下,通过相册选择照片,相册缺无法滑动到最顶部,查原因发现是因为之前为了适配iOS11,对UIScrollView设置了全局的代码:
//避免滚动视图顶部出现20像素空白以及push或者pop的时候页面有一个上移或者下移的异常动画的问题 [[UIScrollView appearance] setContentInsetAdjustmentBehavior:UIScrollViewContentInsetAdjustmentNever];
可以通过如下方法进行解决,在初始化UIIImagePickerController的时候设置下导航不透明,代码如下:
_picker = [[UIImagePickerController alloc] init]; _picker.navigationBar.translucent = NO; _picker.delegate = self; _picker.allowsEditing = YES;