美文网首页
iOS13 弹出相册不是满屏

iOS13 弹出相册不是满屏

作者: 小锤子_ | 来源:发表于2021-03-17 15:32 被阅读0次

主要下面这句

 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];

相关文章

网友评论

      本文标题:iOS13 弹出相册不是满屏

      本文链接:https://www.haomeiwen.com/subject/sikecltx.html