gpt4 book ai didi

iphone - 从 iPhone 应用程序启动照片库

转载 作者:行者123 更新时间:2023-12-03 19:37:25 32 4
gpt4 key购买 nike

是否可以从我的应用程序启动(将用户重定向到)iPhone 的 native 照片库应用程序,类似于电子邮件?现在在 4.2 sdk 中可以实现此功能吗?

最佳答案

为此,您必须创建并呈现一个 UIImagePickerController,如下所示:

UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
imagePicker.delegate = self;
imagePicker.allowsEditing = YES;
imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
[self presentModalViewController:imagePicker animated:YES];

如果您希望用户使用相机,则可以将 imagePicker.sourceType 更改为 imagePicker.sourceType = UIImagePickerControllerSourceTypeCamera;

委托(delegate)方法:- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info 将为您提供 info 字典中的图像。

关于iphone - 从 iPhone 应用程序启动照片库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4275428/

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