UIImagePickerController使用方法_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > UIImagePickerController使用方法

UIImagePickerController使用方法

 2014/5/30 3:25:09  馅饼在哪颗星  博客园  我要评论(0)
  • 摘要:点击按钮后弹出图片库选择图片,然后返回给Button的image。-(IBAction)selectIcon{UIImagePickerController*imagePicker=[[UIImagePickerControlleralloc]init];//设置图库源[imagePickersetSourceType:UIImagePickerControllerSourceTypePhotoLibrary];//是否允许编辑图片[imagePickersetAllowsEditing
  • 标签:方法 使用 使用方法 controller

点击按钮后弹出图片库选择图片,然后返回给Button的image。

- (IBAction)selectIcon {
    UIImagePickerController *imagePicker = [[UIImagePickerController alloc]init];
  //设置图库源 [imagePicker setSourceType:UIImagePickerControllerSourceTypePhotoLibrary];
  //是否允许编辑图片 [imagePicker setAllowsEditing:YES];
  //设置当前控制器为代理 [imagePicker setDelegate:self]; [self presentViewController:imagePicker animated:YES completion:nil]; }

选取图片后需实现代理方法didFinishPickingMediaWithInfo

-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{
    [_icon setImage:info[UIImagePickerControllerEditedImage] forState:UIControlStateNormal];
    [self dismissViewControllerAnimated:YES completion:nil];
}

 

发表评论
用户名: 匿名