AssetsLibrary 未按预期产生故障
我有这样的代码:
ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
[library assetForURL:albumCopy
resultBlock:^(ALAsset *asset) {
NSLog(@"success");
...
}
failureBlock:^(NSError *error) {
NSLog(@"fail");
...
}];
[library autorelease];
问题是,当我给它一个不存在的图像时,NSLog 会出现:
找不到照片 1000000141
成功
如果当照片不存在时这不会显示,我怎样才能找到?
I have this code:
ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
[library assetForURL:albumCopy
resultBlock:^(ALAsset *asset) {
NSLog(@"success");
...
}
failureBlock:^(NSError *error) {
NSLog(@"fail");
...
}];
[library autorelease];
The problem is that when I give it an image which doesn't exist, the NSLog comes up with:
Could not find photo 1000000141
success
If this won't show me when a photo doesn't exist, how can I find out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决了!
Solved it!