gpt4 book ai didi

ios - 从模态 UIViewController 呈现 UIImagePickerController

转载 作者:行者123 更新时间:2023-11-28 22:18:18 25 4
gpt4 key购买 nike

我正在尝试使用它,以便用户可以从他们的相册中选择一张照片到 ImageView 中。如果我对具有执行操作按钮的 View Controller 使用推送转场似乎工作正常,但是当我将其更改为模态转场时,单击按钮运行该功能时没有任何反应。这到底是什么原因呢?

方法:

- (IBAction)choosePhotoFromAlbum:(id)sender {
UIImagePickerController *imgPicker = [[UIImagePickerController alloc] init];
imgPicker.delegate = self;
imgPicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;

[self.navigationController presentViewController:imgPicker animated:YES completion:nil];
}

最佳答案

您试图从导航 Controller 中呈现它,但您的 View Controller 是模态的。改变

[self.navigationController presentViewController:imgPicker animated:YES completion:nil];

[self presentViewController:imgPicker animated:YES completion:nil];.

关于ios - 从模态 UIViewController 呈现 UIImagePickerController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21058460/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com