在一些应用中,我们需要用到iOS设备的摄像头进行拍照,视频。并且从相册中选取我们需要的图片或者视频。
关于iOS摄像头和相册的应用,可以使用UIImagePickerController类来完成控制。
关于UIImagePickerController的相关知识,
如下:
iOS的一些设备上都安装了摄像头。现在绝大多数都有了。
在编程中,我们是用相应的东西来进...
分类:
移动开发 时间:
2014-08-29 18:25:32
阅读次数:
299
UIImagePickerController按钮的中文问题执行以下两步即可1. 在targets中设置region为China2. 在project中添加支持中文
分类:
其他好文 时间:
2014-08-28 22:25:16
阅读次数:
222
1、// 1.判断数据源是否可用 if([UIImagePickerControllerisSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary]) { // 2.打开相册 UIImagePickerControl...
分类:
其他好文 时间:
2014-08-25 22:43:34
阅读次数:
305
//异步下载图片dispatch_queue_tqueue =dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT,0);dispatch_group_tgroup =dispatch_group_create();dispatch_gr...
分类:
移动开发 时间:
2014-08-19 14:13:24
阅读次数:
719
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera])//判断相机是否可用,模拟器不可用相机。 { UIImagePickerController *image...
分类:
移动开发 时间:
2014-08-12 18:11:34
阅读次数:
314
今天做到5s打开自定义相机时 ?取景无法全屏问题 ?如下图 添加以下代码可以解决问题 ?将取景框变成全屏 ????????{
????????????CGSize?screenBounds?=?[UIScreen?mainScreen].bounds....
分类:
移动开发 时间:
2014-08-07 16:00:11
阅读次数:
499
-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex{ UIImagePickerController * picker = [[UIImagePickerControl...
分类:
移动开发 时间:
2014-08-05 13:29:29
阅读次数:
229
UIImagePickerController 定制...
分类:
移动开发 时间:
2014-07-22 14:10:24
阅读次数:
207
http://www.icodeblog.com/2009/07/28/getting-images-from-the-iphone-photo-library-or-camera-using-uiimagepickercontroller/http://stackoverflow.com/ques...
分类:
移动开发 时间:
2014-07-16 20:42:31
阅读次数:
148
/*使用UIImagePickerController和UIPopverController,先在头文件中设置要遵循的协议:*/@implementation PickerVC{ /*UIPopoverController must use the global variable*/ UIPop.....
分类:
其他好文 时间:
2014-07-16 20:40:53
阅读次数:
134