iOS 14使用PHPhotoLibrary獲取圖片庫數(shù)據(jù)篮昧,如果是受限訪問時托享,即權限是PHAuthorizationStatusLimited
陡叠,需要彈出權限選擇的警告伸但,當用戶點擊選擇更多照片...
時敬尺,使用下面的代碼可調(diào)起重新選擇照片的視圖枚尼。但是該視圖的搜索框可能是透明的。
if (@available(iOS 14, *)) {
[[PHPhotoLibrary sharedPhotoLibrary] presentLimitedLibraryPickerFromViewController:self];
}
此時需要設置[UISearchBar appearance]
的背景色來解決砂吞。
UIImage *bgImage = [UIImage qmui_imageWithColor:[UIColor whiteColor] size:CGSizeMake(PixelOne, PixelOne) cornerRadius:0];
[[UISearchBar appearance] setBackgroundColor:UIColor.whiteColor];
[[UISearchBar appearance] setBackgroundImage:bgImage];