iOS11后调用相册后,导航栏遮挡相册照片问题

iOS11后,如果没有设置UIScrollView.appearance().contentInsetAdjustmentBehavior = .automatic,调用相册后,导航栏会遮挡相册照片。解决方法:

present UIImagePickerController之前设置:

1
2
3
if #available(iOS 11.0, *) {
UIScrollView.appearance().contentInsetAdjustmentBehavior = .automatic
}

dismiss之前设置:

1
2
3
if #available(iOS 11.0, *) {
UIScrollView.appearance().contentInsetAdjustmentBehavior = .never
}