iOS从手机相册选择一张照片并显示 Objective-C

 

要先给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

 

转载于:https://www.cnblogs.com/sysu-huangwei/p/7486199.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值