捕获的图像未显示在 uiimageView 中
我有一个 uibutton 来触发 iphone 的相机来抓取图像,并且我在同一视图中有一个 uiimageView 来显示捕获的图像,但捕获后不显示任何内容。
有什么解决办法吗?
I have a uibutton to trigger an iphone's camera to grab an image, and I have a uiimageView in same view to show captured image, but it not showing anything after capturing.
Any solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我的代码:
-
(void)imagePickerController:(UIImagePickerController *)picker
didFinishPickingImage : (UIImage *)图像
编辑信息:(NSDictionary *)编辑信息
{
cameraImageView.image = 图像;
[选择器解雇ModalViewControllerAnimated:是];
}
here's my code:
}
-(void)imagePickerController:(UIImagePickerController *)picker
didFinishPickingImage : (UIImage *)image
editingInfo:(NSDictionary *)editingInfo
{
cameraImageView.image = image;
[picker dismissModalViewControllerAnimated:YES];
}