ios 9 Contacts框架在Objective C中始终引发异常读取imageData

前端之家收集整理的这篇文章主要介绍了ios 9 Contacts框架在Objective C中始终引发异常读取imageData前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试使用unifiedContactWithIdentifier:keysToFetch:error:并使用CNContact ImageDataKey重新获取CNContact后获取imageData,
在目标C.

在运行期间,我总是有相同的异常CNPropertyNotFetchedException甚至重新联系并检查imageData调用imageDataAvailable.这没有意义.
swift中的相同代码很棒.

那么,目标C的Contact框架中是否存在问题?

我在iOS 6和iPhone 9.0.2上使用XCode 7.0构建.

这里的代码

// ...
// ...

if([currentNativeContact isKeyAvailable:CNContactImageDataKey] &&
    currentNativeContact.imageDataAvailable) {
    previewImage = [UIImage imageWithData:currentNativeContact.thumbnailImageData];
}                            
else {
    NSError *error;
    currentNativeContact = [self.contactsStore unifiedContactWithIdentifier:currentNativeContact.identifier keysToFetch:@[CNContactImageDataKey] error:&error];
    if(!error && currentNativeContact.imageDataAvailable)
        previewImage = [UIImage imageWithData:currentNativeContact.thumbnailImageData];                            
}

谁能帮我 ?
谢谢,
米歇尔

解决方法

您需要将CNContactImageDataAvailableKey和CNContactThumbnailImageDataKey添加到keysToFetch.
原文链接:https://www.f2er.com/iOS/328320.html

猜你在找的iOS相关文章