手机
当前位置:查字典教程网 >编程开发 >IOS开发 >IOS获取系统相册中照片的示例代码
IOS获取系统相册中照片的示例代码
摘要:先来看看效果图下面话不多少,我们直接上代码:#import"ViewController.h"@interfaceViewControlle...

先来看看效果图

IOS获取系统相册中照片的示例代码1

下面话不多少,我们直接上代码:

#import "ViewController.h" @interface ViewController ()<UINavigationControllerDelegate,UIImagePickerControllerDelegate> @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<NSString *,id> *)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如何获取系统相册照片的示例代码,有需要的朋友们可以直接用,对大家的开发还是很有帮助的,如果大家有疑问可以留言交流。

【IOS获取系统相册中照片的示例代码】相关文章:

iOS App设计模式开发中对建造者模式的运用实例

ios系统下删除文件的代码

详解iOS中Button按钮的状态和点击事件

IOS开发用户登录注册模块所遇到的问题

IOS设置按钮为圆角的示例代码

iOS开发中最有用关键的代码整合

IOS生成与读取二维码名片

iOS实现爆炸的粒子效果示例代码

IOS打开系统相机的闪光灯

实例解析iOS开发中系统音效以及自定义音效的应用

精品推荐
分类导航