Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 780125
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T20:01:43+00:00 2026-05-14T20:01:43+00:00

I’ve got an app that has a table view that displays contact information in

  • 0

I’ve got an app that has a table view that displays contact information in each row. I’d like to use the contact’s stored image (if there is one available) as the image on the left-hand side of the cell.

I’ve found some sketchy sample code in Apple’s documentation, but the address book references some kind of weird data type (CFDataRef) that doesn’t appear to correspond to the data types referenced in the table view programming guide (mainly UIImage).

This seems like a pretty basic task, but I can’t seem to wrap my head around it. Thanks in advance for any help you can offer.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T20:01:44+00:00Added an answer on May 14, 2026 at 8:01 pm

    You can use the ABPersonHasImageData function to check if the contact has an image.

    Here’s an example:

    - ( UITableViewCell *) tableView: ( UITableView *) tableView cellForRowAtIndexPath: ( NSIndexPath *) indexPath {
    static NSString *id = @"id";
    UITableViewCell *cell = [ tableView dequeueReusableCellWithIdentifier: id ];
    
    if( !cell ) cell = [[ UITableViewCell alloc ] initWithStyle: UITableViewCellStyleDefault reuseIdentifier: id ];
    
    ABRecordRef record = ...
    
    UIImage *image;
    if( ABPersonHasImageData( record ) ) {
       //record has an image
       image = [ UIImage imageWithData: ABPersonCopyImageData( record ) ];
    } else {
       image = [ UIImage imageNamed: @"silhouette.png" ]; //just an example
    }
    
    cell.imageView.image = image;
    
    // do other stuff with cell...
    
    
    return cell;
    }
    

    Core Foundation types are toll-free bridged with the Foundation types (CF==NS)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.