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

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM