我正在使用UITableView来显示移动联系人详细信息,如fullname,phonenumbers和个人资料图片。以下是代码
- (void)viewDidLoad {
[super viewDidLoad];
[self fetchContactsandAuthorization];
[_selectContactListTblView reloadData];
}
-(void)fetchContactsandAuthorization
{
// Request authorization to Contacts
CNContactStore *store = [[CNContactStore alloc] init];
[store requestAccessForEntityType:CNEntityTypeContacts completionHandler:^(BOOL granted, NSError * _Nullable error) {
if (granted == YES)
{
//keys with fetching properties
NSArray *keys = @[CNContactFamilyNameKey, CNContactGivenNameKey, CNContactPhoneNumbersKey, CNContactImageDataKey];
NSString *containerId = store.defaultContainerIdentifier;
NSPredicate *predicate = [CNContact predicateForContactsInContainerWithIdentifier:containerId];
NSError *error;
NSArray *cnContacts = [store unifiedContactsMatchingPredicate:predicate keysToFetch:keys error:&error];
NSLog(@"new %@",cnContacts);
if (error)
{
NSLog(@"error fetching contacts %@", error);
}
else
{
NSString *phone;
NSString *fullName;
NSString *firstName;
NSString *lastName;
UIImage *profileImage;
NSMutableArray *contactNumbersArray = [[NSMutableArray alloc]init];
for (CNContact *contact in cnContacts) {
// copy data to my custom Contacts class.
firstName = contact.givenName;
lastName = contact.familyName;
if (lastName == nil) {
fullName=[NSString stringWithFormat:@"%@",firstName];
}else if (firstName == nil){
fullName=[NSString stringWithFormat:@"%@",lastName];
}
else{
fullName=[NSString stringWithFormat:@"%@ %@",firstName,lastName];
}
UIImage *image = [UIImage imageWithData:contact.imageData];
if (image != nil) {
profileImage = image;
}else{
profileImage = [UIImage imageNamed:@"person-icon.png"];
}
for (CNLabeledValue *label in contact.phoneNumbers) {
phone = [label.value stringValue];
if ([phone length] > 0) {
[contactNumbersArray addObject:phone];
}
}
NSDictionary* personDict = [[NSDictionary alloc] initWithObjectsAndKeys: fullName,@"fullName",profileImage,@"userImage",phone,@"PhoneNumbers", nil];
NSLog(@"persondictfull %@",personDict);
NSLog(@"persondictp %@",[personDict objectForKey:@"PhoneNumbers"]);
[contactFullNameArr addObject:[NSString stringWithFormat:@"%@",[personDict objectForKey:@"fullName"]]];
[contactPhoneNumberArr addObject:[NSString stringWithFormat:@"%@",[personDict objectForKey:@"PhoneNumbers"]]];
[contactImgPathArr addObject:[NSString stringWithFormat:@"%@",[personDict objectForKey:@"userImage"]]];
NSLog(@"contactImg - %@",contactImgPathArr);
}
dispatch_async(dispatch_get_main_queue(), ^{
[_selectContactListTblView reloadData];
});
}
}
}];
}
作为参考,这是contactImg日志中生成的内容
contactImg - (
"<UIImage: 0x7b935760>, {196, 199}",
"<UIImage: 0x7b77b1e0>, {196, 199}",
"<UIImage: 0x7b6d48a0>, {196, 199}",
"<UIImage: 0x7b6d4b40>, {196, 199}",
"<UIImage: 0x7b87d8e0>, {196, 199}",
"<UIImage: 0x7b87d950>, {3000, 2002}",
"<UIImage: 0x7b77b730>, {196, 199}",
"<UIImage: 0x7b77b9a0>, {196, 199}",
"<UIImage: 0x7b6d4c90>, {196, 199}",
"<UIImage: 0x7b87df10>, {196, 199}",
"<UIImage: 0x7b6d54a0>, {196, 199}",
"<UIImage: 0x7b9334c0>, {196, 199}"
)
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"SelectContactTableViewCell";
SelectContactTableViewCell *cell = (SelectContactTableViewCell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"SelectContactTableViewCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
}
cell.contactFullName.text = [contactFullNameArr objectAtIndex:indexPath.row];
//tried by directly assigning the value but no use
cell.contactProfileImage.image = [contactImgPathArr objectAtIndex:indexPath.row];
//if i assign any static image i am able to see the image
// cell.contactProfileImage.image = [UIImage imageNamed:@"person-icon.png"];
cell.contactPhoneNumber.text = [contactPhoneNumberArr objectAtIndex:indexPath.row];
return cell;
}
我尝试了很多,但无法弄清楚问题。任何帮助将非常感激。
答案 0 :(得分:1)
你有一些问题。主要问题从这里开始:
[contactImgPathArr addObject:[NSString stringWithFormat:@"%@",[personDict objectForKey:@"userImage"]]];
personDict[@userImage"]
是UIImage
。出于某种原因,您可以使用图片的description
方法创建一个字符串,并将该无效字符串存储在contactImgPathArr
中。
稍后,您会尝试通过传递图片的说明来滥用UIImage imageNamed:
。
所以你需要两个改变。首先,改变:
[contactImgPathArr addObject:[NSString stringWithFormat:@"%@",[personDict objectForKey:@"userImage"]]];
为:
[contactImgPathArr addObject:[personDict objectForKey:@"userImage"]];
(更好的是:)
[contactImgPathArr addObject:personDict[@"userImage"]];
然后改变:
cell.contactProfileImage.image = [UIImage imageNamed:[contactImgPathArr objectAtIndex:indexPath.row]];
为:
cell.contactProfileImage.image = [contactImgPathArr objectAtIndex:indexPath.row];
(甚至更好:)
cell.contactProfileImage.image = contactImgPathArr[indexPath.row];
BTW - 您对personDict
的使用也毫无意义。
此代码:
NSDictionary* personDict = [[NSDictionary alloc] initWithObjectsAndKeys: fullName,@"fullName",profileImage,@"userImage",phone,@"PhoneNumbers", nil];
[contactFullNameArr addObject:[NSString stringWithFormat:@"%@",[personDict objectForKey:@"fullName"]]];
[contactPhoneNumberArr addObject:[NSString stringWithFormat:@"%@",[personDict objectForKey:@"PhoneNumbers"]]];
[contactImgPathArr addObject:[NSString stringWithFormat:@"%@",[personDict objectForKey:@"userImage"]]];
应该只是:
[contactFullNameArr addObject:fullName];
[contactPhoneNumberArr addObject:phone];
[contactImgPathArr addObject:profileImage];
如果只使用[NSString stringWithFormat:@"%@", someStringValue]
,请勿使用someStringValue
。