调取本地图片传输到其他的页面,在方法-(void)p_w_picpathPickerController:(UIImagePickerController*)pickerdidFinishPickingMediaWithInfo:(NSDictionary*)info;中,info为字典值,期中包含你所选择的图片的URL值,可以通过URL值进行传值操作,下面为具体代码:.h文件#impor..
分类:
移动开发 时间:
2015-07-29 06:40:39
阅读次数:
209
iOS拍摄照片demo UI添加一个UIImageView来显示图片,另外使用一个按键来进入拍照界面。效果图如下:实现代码1.设置代理,UIImagePickerController是UINavigationController的子类,所以UIImagePicker- Con-troller的委托也...
分类:
移动开发 时间:
2015-07-29 00:47:19
阅读次数:
170
直接上代码;对UIImagePickerController扩展:
//
// UIImagePickerController+StatusBarHidden.m
//
//
// Created by fangmi-huangchengda on 15/7/28.
//
//
#import "UIImagePickerController+StatusBarHidden.h"
#i...
分类:
其他好文 时间:
2015-07-28 18:46:01
阅读次数:
173
//原理,还是调用UIImagePickerController控制器,设置Type为视频 #import "ViewController.h" #import @interface ViewController () @end @implementation ViewController...
分类:
其他好文 时间:
2015-07-21 20:13:36
阅读次数:
129
1. DEVICE = iPhone5PLImagePickerCameraView: UIView UIView CAMPreviewView UIView UIView UIView CAMBlurredSnapsho...
分类:
其他好文 时间:
2015-07-21 10:15:30
阅读次数:
890
1.创建UIImageView-(void)creatPhotoImageView{ self.photoImageView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 20, 80, 80)]; self.photoImageView.b...
分类:
其他好文 时间:
2015-07-15 20:54:33
阅读次数:
126
1.检查照片源是否可用[UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]2.是否允许编辑允许编辑.[imagePicker setAllowsEditing:YES];3. v...
分类:
其他好文 时间:
2015-07-15 20:43:37
阅读次数:
148
创建图片#pragma mark - 创建 photoImageView
- (void)createphotoImageView
{ self.photoImageView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 70, 320, 390)];
self.photoImageView.backgroundColor =...
分类:
其他好文 时间:
2015-07-15 17:04:30
阅读次数:
114
UIImagePickerController继承于UINavigationController。UIImagePickerController可以用来选择照片,它还可以用来拍照和录制视频。
//视频保存后 播放视频
NSURL *url = [info objectForKey:UIImagePickerControllerMediaURL];
NSString *urlPath = [url path];
if (UIVideoAtPathIsCompat...
分类:
其他好文 时间:
2015-07-10 16:39:06
阅读次数:
105
1.+(BOOL)isSourceTypeAvailable:(UIImagePickerControllerSourceType)sourceType; // 检查指定源是否在设备上可用。[UIImagePickerController isSourceTypeAvailable:UIIm...
分类:
其他好文 时间:
2015-07-08 16:07:13
阅读次数:
102