didFinishPickingMediaWithInfo 返回零照片
我正在努力捕获在 4.0 中返回的图像,使用
- (void)imagePickerController:(UIImagePickerController *)picker
didFinishPickingMediaWithInfo:(NSDictionary *)info
{
[[picker parentViewController] dismissModalViewControllerAnimated:YES];
// MediaType can be kUTTypeImage or kUTTypeMovie. If it's a movie then you
// can get the URL to the actual file itself. This example only looks for images.
//
NSString* mediaType = [info objectForKey:UIImagePickerControllerMediaType];
// NSString* videoUrl = [info objectForKey:UIImagePickerControllerMediaURL];
// Try getting the edited image first. If it doesn't exist then you get the
// original image.
//
if (CFStringCompare((CFStringRef) mediaType, kUTTypeImage, 0) == kCFCompareEqualTo) {
UIImage* picture = [info objectForKey:UIImagePickerControllerEditedImage];
if (!picture)
picture = [info objectForKey:UIImagePickerControllerOriginalImage];
// **picture is always nil
// info dictionary count = 1
}
}
发生的情况是信息字典总是返回一个条目:
{ UIImagePickerControllerMediaType = “公共.图像”;
这很棒,但从来没有图像。
我使用了这个论坛上的一个很好的例子来做到这一点,我很确定调用是正确的,但从来没有图像。
提前致谢!
I am working to capture an image that is returned in 4.0 using
- (void)imagePickerController:(UIImagePickerController *)picker
didFinishPickingMediaWithInfo:(NSDictionary *)info
{
[[picker parentViewController] dismissModalViewControllerAnimated:YES];
// MediaType can be kUTTypeImage or kUTTypeMovie. If it's a movie then you
// can get the URL to the actual file itself. This example only looks for images.
//
NSString* mediaType = [info objectForKey:UIImagePickerControllerMediaType];
// NSString* videoUrl = [info objectForKey:UIImagePickerControllerMediaURL];
// Try getting the edited image first. If it doesn't exist then you get the
// original image.
//
if (CFStringCompare((CFStringRef) mediaType, kUTTypeImage, 0) == kCFCompareEqualTo) {
UIImage* picture = [info objectForKey:UIImagePickerControllerEditedImage];
if (!picture)
picture = [info objectForKey:UIImagePickerControllerOriginalImage];
// **picture is always nil
// info dictionary count = 1
}
}
What is happening is that the info dictionary always returns with a single entry:
{
UIImagePickerControllerMediaType =
"public.image";
which is great, but there is never an image.
I was using a great example from this forum to do this, and I am pretty sure the calls are correct, but never an image.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
我知道这已经是几个月后的事了,但我为此苦苦挣扎了几个小时,并在这个网站和 iphonedevsdk.com 上发现了同样的问题,但从未找到有效的答案。
总而言之,如果图像是从相机胶卷/照片库中选取的,则它工作得很好,但如果图像是用相机拍摄的新照片,则它永远不会工作。好吧,以下是如何让它同时适用于两者:
在尝试对信息字典执行任何操作之前,您必须关闭并释放 UIImagePickerController。非常清楚:
这不起作用:
在所有这些情况下,图像都将为零。
然而,通过首先释放 UIImagePickerController 的魔力...
这确实有效:
非常简单,但仅此而已。
I know this is many months later, but I struggled with this for hours, and found this same question all over this site and iphonedevsdk.com, but never with a working answer.
To summarize, if the image was picked from the camera roll/photo library it worked fine, but if the image was a new photo take with the camera it never worked. Well, here's how to make it work for both:
You have to dismiss and release the UIImagePickerController before you try to do anything with the info dictionary. To be super-clear:
This DOES NOT work:
In all of those cases the image will be nil.
However, via the magic of releasing the UIImagePickerController first...
This DOES work:
Crazy simple, but that's all there is to it.
虽然 Matthew Frederick 的答案最受欢迎并且长期以来一直是适当的回应,但从 iOS 5.0 开始,苹果提供了
dismissViewControllerAnimated:completion:
来替换现已弃用的(从 iOS 6.0 开始)dismissViewControllerAnimated :。
在完成块中执行图像信息字典检索应该对所有人都更有意义。
以上面的例子为例,现在看起来像:
whilst Matthew Frederick's answer is most popular and has long been the appropriate response, as of iOS 5.0, apple made available
dismissViewControllerAnimated:completion:
, to replace the now deprecated (as of iOS 6.0)dismissViewControllerAnimated:
.performing the image info dictionary retrieval in the completion block should hopefully make more sense to all.
to take his example from above, it would now look like:
我已经尝试了上述所有方法,但在 iPad 6.0/6.1 模拟器上没有运气,但是我发现信息包含“UIImagePickerControllerReferenceURL”键,这是我的代码:
loadImageFromAssertByUrl 的代码是:
I've tried all above, but no luck on iPad 6.0/6.1 simulator, however i've found that info contains "UIImagePickerControllerReferenceURL" key and here is my code:
and code for loadImageFromAssertByUrl is:
某些版本的 XCode 和 Mountain Lion 还存在一个已知错误。检查您的控制台是否有以下消息:
2013-01-17 21:36:34.946 3sure-ios[5341:1803] 未找到命名服务“com.apple.PersistentURLTranslator.Gatekeeper”。 assetd 已关闭或配置错误。事情不会按照您期望的方式工作。
如果出现该消息,它可能不会工作。在实际的 iOS 设备上检查您的应用程序。
尽管如此,重新启动模拟器和 XCode 似乎可以解决该问题。
There's also a known bug with some versions of XCode and Mountain Lion. Check your console for this message:
2013-01-17 21:36:34.946 3sure-ios[5341:1803] Named service 'com.apple.PersistentURLTranslator.Gatekeeper' not found. assetsd is down or misconfigured. Things will not work the way you expect them to.
It probably won't work if that message appears. Check your app at the actual iOS device.
Nevetheless, restarting both simulator and XCode seems to fix the issue.
我有同样的症状,但就我而言,结果证明我在 UIImagePickerController 层次结构中的某个类别上覆盖了“uuid”或“setUUID”?我猜 CoreData 需要这些方法,否则它会变得非常非常混乱,而资源库都是 CoreData 的东西。
I had the same symptoms, but in my case it turned out I had a category on something in the UIImagePickerController hierarchy that overrode "uuid" or "setUUID"? I guess CoreData needs these methods or it gets very, very confused, and the asset library is all CoreData stuff.
使用
而不是
use
instead of
需要遵循以下步骤:
1)制作UIActionSheet
2) 选择必要的源类型 - 加载资源
3) didFinishPickingMediaWithInfo - 从收到的图像字典中设置图像
Following Steps needs to be followed:
1) Make UIActionSheet
2) On selection necessary source type - load resrouces
3) didFinishPickingMediaWithInfo - set image from image Dictionary recieved