繁体   English   中英

在目标c中使用联系人框架时,无法在表视图中显示联系人缩略图

[英]Unable to show contact thumbnail image in tableview while using contacts framework in objective c

我正在使用UITableView显示移动联系人详细信息,例如全名,电话号码和个人资料图像。 下面是代码

- (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;
    }

我获得全名和电话号码详细信息但没有缩略图的推荐人的屏幕截图 在此处输入图片说明

我做了很多尝试,但无法找出问题所在。 任何帮助将不胜感激。

你有几个问题。 主要问题从这里开始:

[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];

顺便说一句-您对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];

当您可以简单地使用someStringValue[NSString stringWithFormat:@"%@", someStringValue]请勿使用[NSString stringWithFormat:@"%@", someStringValue]

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM