您的位置:首页 > 教育 > 锐评 > 广州网站优化排名哪家好_质量好网站建设价格_客源引流推广app_seo的基础是什么

广州网站优化排名哪家好_质量好网站建设价格_客源引流推广app_seo的基础是什么

2024/12/25 1:44:36 来源:https://blog.csdn.net/qq_73106050/article/details/144331400  浏览:    关键词:广州网站优化排名哪家好_质量好网站建设价格_客源引流推广app_seo的基础是什么
广州网站优化排名哪家好_质量好网站建设价格_客源引流推广app_seo的基础是什么

【iOS】UIImagePickerController

前言

笔者简单学习了iOS开发如何调用本地的一个相册的内容,下面简单介绍一下相关内容。

介绍

UIImagePickerController是iOS平台上的一个类,用于在应用程序中访问设备的照片库、相机和视频录制功能。它提供了一个用户界面,使用户可以从设备的媒体库中选择照片或视频,或者使用设备的摄像头拍摄照片或录制视频。在这里我们先只介绍一下访问相机和相册这两个功能。

下面笔者直接通过一个例子来介绍对应的一个内容

  • viewDidLoad部分
- (void)viewDidLoad {[super viewDidLoad];UIButton *pickImageButton = [UIButton buttonWithType:UIButtonTypeSystem];[pickImageButton setTitle:@"选择图片" forState:UIControlStateNormal]; //设置了一个button[pickImageButton addTarget:self action:@selector(pickImage) forControlEvents:UIControlEventTouchUpInside]; // 通过点击时间打开对应的图片pickImageButton.frame = CGRectMake(100, 100, 150, 40);[self.view addSubview:pickImageButton];}
  • 访问相册内容
- (void)pickImage {UIImagePickerController *imagePickerController = [[UIImagePickerController alloc] init];imagePickerController.delegate = self;  // 设置代理// 选择图片来源:相册imagePickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;// 展示 UIImagePickerController[self presentViewController:imagePickerController animated:YES completion:nil];
}
  • 选择图片
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info { //后面的这个参数是有关于字典的内容,这个字典是用来访问图片的// 获取选择的图片UIImage *image = info[UIImagePickerControllerOriginalImage];// 例如显示在 ImageView 上UIImageView *imageView = [[UIImageView alloc] initWithImage:image];imageView.frame = CGRectMake(50, 200, 200, 200);[self.view addSubview:imageView];// 关闭 UIImagePickerController[picker dismissViewControllerAnimated:YES completion:nil];
}

实现效果:

image-20241208195353064

image-20241208195415141

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com