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
时间: 2024-11-03 21:57:42

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

iOS 从手机相册里选取图片

#import <UIKit/UIKit.h> @interface AppDelegate : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window; @end #import "AppDelegate.h" #import "RootViewController.h" @interface AppDelegate () @end

MUI - IOS系统,相册选择照片后,点击确定按钮无反应

MUI框架下使用 plus.gallery.pick 时,选择好照片之后,点击确定按钮无反应(既没报错,也没正确执行成功或失败后的回调方法).这是在做测试时,其中有两台苹果机上出现的bug.做了调试也没发现问题的所在,之后只能网上查资料,看别人是否遇到了同样的问题.最终查找结果如下: 问题原因:MUI框架目前的一个bug,当苹果手机的相册开启了 iCloud 共享时,选择的相片如果存在 iCloud 上时,无法返回相片路径,所以点击 [确定]按钮无反应. 解决方案:只要把 iCloud 共享关闭

IOS调用相机相册

#import "SendViewController.h"  //只能打开,没有加载图片的代码,老代码,供参考 #import <MobileCoreServices/UTCoreTypes.h> @interface SendViewController ()<UIActionSheetDelegate,UINavigationControllerDelegate,UIImagePickerControllerDelegate> -(IBAction)sel

相册选择头像或者拍照 上传头像以NSData 图片二进制格式 表单上传

一.点击头像图片 或者按钮 在相册选择照片返回img,网络上传头像要用data表单上传 (1)上传头像属性 // 图片二进制格式 表单上传 @property (nonatomic, strong) NSData *imageWithData; (2)头像点击事件 - (void)headImageEvent{ NSLog(@"上传头像"); [self selectPhotoAlbumWithSelectPhotoHandle:^(UIImage *img) { self.heade

IOS研究院之打开照相机与本地相册选择图片

如下图所示 在本地相册中选择一张图片后,我们将他拷贝至沙盒当中,在客户端中将它的缩略图放在按钮旁边,这个结构其实和新浪微薄中选择图片后的效果一样.最终点击发送将按钮将图片2进制图片上传服务器. 下面我们仔细学习具体的细节.创建一个空的IOS项目,接着在创建一个ViewController. AppDelegate.h 应用的代理类 这个没什么好说的就是直接打开刚刚创建的新ViewController. 1 #import <UIKit/UIKit.h> 2 #import "Test

Android调用系统相册和相机选择图片并显示在imageview中

Android调用系统相册和相机选择图片并显示在imageview中,在系统调用相机拍摄中,直接返回的是经过压缩处理后的图像,当你直接把返还后的图片放在imageview中时 图片就会非常的模糊,所以要经过先存放在sd中,然后在处理并显示.当调用系统相册时,因为Android系统从4.4版本以后系统不再返回真实的uri路径,而是封装过后的uri路径,所以当你写代码时必须注意,4.4是一个分水岭,4.4以上的版本必须就通过解析和相应的处理才能获取到真实的uri路径. 先上程序运行的结果. 这个是调

ios最新调用手机相册选取头像(UIActionSheet过期)

由于 UIActionSheet过期所以可以使用如下调用手机相册 前提不要忘记添加代理如下两个 UIImagePickerControllerDelegate,UINavigationControllerDelegate 还需要去plist文件里面添加相机相册权限否则要崩溃的哟 //更换头像 - (IBAction)changeHeadIM:(id)sender { //创建UIImagePickerController对象,并设置代理和可编辑 UIImagePickerController *

js手机联动选择地区仿ios 开源git

js手机联动选择地区 前言:由于网上找到了一个mobiscrool,比较全,但是不开源,只能试用15天,正式版竟然要三千块钱,穷人只能自己动手,写了个只针对弹窗地区选择的. 本站点所有的资源均在github上可以查看源代码 GitHub demo地址请点击这里 http://www.lovewebgames.com/jsmodule/mobile-select-area.html mobile-select-area 手机联动选择地区 用法 ##注:依赖于[dialog](https://git

iOS 下的相册与图片处理

iOS 下的相册与图片处理 需求 很多公司项目中都会使用到相册,以及相机,保存图片,从相册中选取图片等等操作.本文将详细介绍该功能如何实现优化,以及使用一些优秀的第三方库来辅助完成我们的需求. photos framework 的使用 Photos Framework reference Classes PHAdjustmentData /* When a user edits an asset, Photos saves a PHAdjustmentData object along with