嗨,我在我的应用程序中使用地址簿。我在模拟器中获得联系人。但在 iPhone 4S 中,它不显示设备中的任何联系人。而在 iPhone 4 中,我只有 1 个联系人。我不明白为什么它不显示所有联系人。我正在使用以下代码。请帮我。
ABAddressBookRef ab=ABAddressBookCreate();
NSArray *arrTemp=(NSArray *)ABAddressBookCopyArrayOfAllPeople(ab);
UIImage* image;
ContactArray=[[NSMutableArray alloc] init];
for (int i=0;i<[arrTemp count];i++)
{
NSMutableDictionary *dicContact=[[NSMutableDictionary alloc] init];
NSString *str=(NSString *) ABRecordCopyValue([arrTemp objectAtIndex:i], kABPersonFirstNameProperty);
UIImage *imgContactImage=(UIImage *)ABPersonCopyImageDataWithFormat([arrTemp objectAtIndex:i],kABPersonImageFormatOriginalSize);
if(ABPersonHasImageData([arrTemp objectAtIndex:i])){
image = [UIImage imageWithData:(NSData *)ABPersonCopyImageData([arrTemp objectAtIndex:i])];
} else {
image = [UIImage imageNamed:@""];
}
NSString* phoneNumber=@"";
NSString *mobileLabel=@"";
//Get mobile phone number
ABMultiValueRef phoneNumbers = (ABMultiValueRef)ABRecordCopyValue([arrTemp objectAtIndex:i], kABPersonPhoneProperty);
CFRelease(phoneNumbers);
if(ABMultiValueGetCount(phoneNumbers)>0) {
for(CFIndex j = 0; j < ABMultiValueGetCount(phoneNumbers); j++) {
mobileLabel = (NSString*)ABMultiValueCopyLabelAtIndex(phoneNumbers, j);
if([mobileLabel isEqualToString:@"_$!<Mobile>!$_"]) {
phoneNumber = (NSString*)ABMultiValueCopyValueAtIndex(phoneNumbers, j);
}
}
}
else
{
phoneNumber=@"";
}
NSLog(@"%@",phoneNumber);
}