主要下面这句
imagePicker.modalPresentationStyle = UIModalPresentationFullScreen;
选择相册
UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
imagePicker.delegate = self;
imagePicker.allowsEditing = YES;
//iOS 13 相册全屏幕
imagePicker.modalPresentationStyle = UIModalPresentationFullScreen;
imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
[self.pickControl presentViewController:imagePicker animated:YES completion:nil];
网友评论