您的位置:首页 > 财经 > 金融 > 企业级服务器配置_百度搜索热度排名_搜索引擎营销的英文缩写_qq群推广软件

企业级服务器配置_百度搜索热度排名_搜索引擎营销的英文缩写_qq群推广软件

2024/11/16 21:37:55 来源:https://blog.csdn.net/LIUXIAOXIAOBO/article/details/143138378  浏览:    关键词:企业级服务器配置_百度搜索热度排名_搜索引擎营销的英文缩写_qq群推广软件
企业级服务器配置_百度搜索热度排名_搜索引擎营销的英文缩写_qq群推广软件

直接上代码

    if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary]) {UIImagePickerController *imagePickerController = [[UIImagePickerController alloc] init];imagePickerController.delegate = self; //设置代理imagePickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;[navigationController presentViewController:imagePickerController animated:YES completion:nil];}
}#pragma mark - UIImagePickerControllerDelegate- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {[picker dismissViewControllerAnimated:YES completion:^{}];UIImage *image = [info objectForKey:UIImagePickerControllerOriginalImage]; //通过key值获取到图片self.avatarView.image = image;
}- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker {[picker dismissViewControllerAnimated:YES completion:^{}];
}

注意,弹出相册选择弹窗,不需要申请相册权限, 只有将图片写入系统相册
才需要这个权限,并且,弹出系统相册弹窗的时候,要添加这个判断
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary]) {

版权声明:

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

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