IOS应用开发:iOS从手机相册选择一张照片并显示 Objective-C
安安 2017-09-20 来源 :网络 阅读 1434 评论 0

摘要:本篇IOS应用开发教程将为大家讲解iOS从手机相册选择一张照片并显示 Objective-C,看完这篇文章会让你对IOS编程的知识点有更加清晰的理解和运用。

本篇IOS应用开发教程将为大家讲解iOS从手机相册选择一张照片并显示 Objective-C,看完这篇文章会让你对IOS编程的知识点有更加清晰的理解和运用。

 

要先给app设置访问相册的权限:

在项目的Info.plist文件里添加Privacy - Photo Library Usage Description权限

 

ViewController.h:

 

 1 #import <UIKit/UIKit.h> 2  3 @interface ViewController : UIViewController 4 { 5     IBOutlet UIImageView *myImageView; //与ImageView视图关联 6 } 7  8  9 - (IBAction)buttonUp:(id)sender;  // 与一个Button关联10 11 @end

 

 

ViewController.m:

 

 1 #import "ViewController.h" 2  3  4 @interface ViewController ()<UINavigationControllerDelegate,UIImagePickerControllerDelegate>//接口 5  6 @end 7  8 @implementation ViewController 9 10 - (void)viewDidLoad {11     [super viewDidLoad];12     // Do any additional setup after loading the view, typically from a nib.13 }14 15 16 - (void)didReceiveMemoryWarning {17     [super didReceiveMemoryWarning];18     // Dispose of any resources that can be recreated.19 }20 21 22 - (IBAction)buttonUp:(id)sender {23     //初始化UIImagePickerController类24     UIImagePickerController * picker = [[UIImagePickerController alloc] init];25     //判断数据来源为相册26     picker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;27     //设置代理28     picker.delegate = self;29     //打开相册30     [self presentViewController:picker animated:YES completion:nil];31 }32 33 //选择完成回调函数34 - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info{35     //获取图片36     UIImage *image = info[UIImagePickerControllerOriginalImage];37     [self dismissViewControllerAnimated:YES completion:nil];38 39     myImageView.image = image;40 }41 42 //用户取消选择43 - (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker{44     [self dismissViewControllerAnimated:YES completion:nil];45 }46 47 48 @end

 

希望这篇文章可以帮助到你。总之,同学们,你想要的职坐标IOS频道都能找到!

 

本文由 @安安 发布于职坐标。未经许可,禁止转载。
喜欢 | 0 不喜欢 | 0
看完这篇文章有何感觉?已经有0人表态,0%的人喜欢 快给朋友分享吧~
评论(0)
后参与评论

您输入的评论内容中包含违禁敏感词

我知道了

助您圆梦职场 匹配合适岗位
验证码手机号,获得海同独家IT培训资料
选择就业方向:
人工智能物联网
大数据开发/分析
人工智能Python
Java全栈开发
WEB前端+H5

请输入正确的手机号码

请输入正确的验证码

获取验证码

您今天的短信下发次数太多了,明天再试试吧!

提交

我们会在第一时间安排职业规划师联系您!

您也可以联系我们的职业规划师咨询:

小职老师的微信号:z_zhizuobiao
小职老师的微信号:z_zhizuobiao

版权所有 职坐标-一站式AI+学习就业服务平台 沪ICP备13042190号-4
上海海同信息科技有限公司 Copyright ©2015 www.zhizuobiao.com,All Rights Reserved.
 沪公网安备 31011502005948号    

©2015 www.zhizuobiao.com All Rights Reserved