IOS如何获取系统相册中的照片
来源:爱站网时间:2020-12-12编辑:网友分享
我们在开发系统的时候是不是经常会遇到app需要从系统相册中获取图片的情况呢?那么你知道IOS如何获取系统相册中的照片吗?下面这篇文章给大家分享这个功能的实现,有需要的可以参考借鉴。
我们在开发系统的时候是不是经常会遇到app需要从系统相册中获取图片的情况呢?那么你知道IOS如何获取系统相册中的照片吗?下面这篇文章给大家分享这个功能的实现,有需要的可以参考借鉴。
先来看看效果图
下面话不多少,我们直接上代码:
#import "ViewController.h" @interface ViewController ()@property (weak, nonatomic) IBOutlet UIImageView *IconView; @end @implementation ViewController - (IBAction)chooseImage { //弹出系统相册 UIImagePickerController *pickVC = [[UIImagePickerController alloc] init]; //设置照片来源 pickVC.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum; pickVC.delegate = self; [self presentViewController:pickVC animated:YES completion:nil]; } #pragma mark - UIImagePickerControllerDelegate -(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{ UIImage *photo = info[UIImagePickerControllerOriginalImage]; UIImageView *imageV = [[UIImageView alloc] init]; imageV.frame = self.IconView.frame; imageV.image = photo; imageV.userInteractionEnabled = YES; [self.view addSubview:imageV]; [self dismissViewControllerAnimated:YES completion:nil]; } @end
以上就是IOS如何获取系统相册中的照片的方法介绍,有需要的朋友们可以直接用,对大家的开发还是很有帮助的。