Getting image from UIImagePickerController

后端 未结 4 1166
半阙折子戏
半阙折子戏 2021-02-15 04:11

I want to get the image frm imagepickercontroller.But my code doesn\'t have any effect Here is the code..

- (void)imagePickerController:(UIImagePick         


        
4条回答
  •  忘了有多久
    2021-02-15 04:27

    Try

    imageview.image = (UIImage*) [info objectForKey:UIImagePickerControllerOriginalImage];
    

提交回复
热议问题