首页 > 学院 > 开发设计 > 正文

UIImagePickerController使用方法

2019-11-14 20:27:19
字体:
来源:转载
供稿:网友

点击按钮后弹出图片库选择图片,然后返回给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];}

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表