博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
调用系统的相册
阅读量:5130 次
发布时间:2019-06-13

本文共 877 字,大约阅读时间需要 2 分钟。

第一步遵守协议,UIImagePickerControllerDelegate,UINavigationControllerDelegate

第二步:创建picker对象

    UIImagePickerController * picker = [[UIImagePickerController alloc]init];

第三步 :打开的模式三种

    picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;

    UIImagePickerControllerSourceTypePhotoLibrary,

    UIImagePickerControllerSourceTypeCamera,
    UIImagePickerControllerSourceTypeSavedPhotosAlbum

第四步:设置代理

    picker.delegate = self;

第五步:进入相册

    [self presentViewController:picker animated:YES completion:nil];

选中相册中某一种照片的协议方法为

-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info

{
        //获取选中的图片
    UIImage * selectImage = [info objectForKey:UIImagePickerControllerOriginalImage];
    self.imageView.image = selectImage;
    //将picker隐藏
    [picker dismissViewControllerAnimated:YES completion:nil];
}

 

转载于:https://www.cnblogs.com/huoxingdeguoguo/p/4611492.html

你可能感兴趣的文章
java代码编译与C/C++代码编译的区别
查看>>
Bitmap 算法
查看>>
转载 C#文件中GetCommandLineArgs()
查看>>
list control控件的一些操作
查看>>
精读《useEffect 完全指南》
查看>>
SNF快速开发平台MVC-EasyQuery-拖拽生成SQL脚本
查看>>
DrawerLayout实现双向侧滑
查看>>
MySQL入门很简单-触发器
查看>>
LVM快照(snapshot)备份
查看>>
绝望的第四周作业
查看>>
一月流水账
查看>>
数论四大定理
查看>>
npm 常用指令
查看>>
C#基础知识面试经典[整理]
查看>>
20几个正则常用正则表达式
查看>>
TextArea中定位光标位置
查看>>
非常棒的Visual Studo调试插件:OzCode 2.0 下载地址
查看>>
判断字符串在字符串中
查看>>
hdu4374One hundred layer (DP+单调队列)
查看>>
类间关系总结
查看>>