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

  • SEARCH
  • Home
  • 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 6953465
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:28:58+00:00 2026-05-27T14:28:58+00:00

Being fairly new to objective-c and developing for ios I’m trying to figure out

  • 0

Being fairly new to objective-c and developing for ios I’m trying to figure out how to implement the addressbook code from Address Book Programming Guide for iOS.

I want to be able to log the address a user clicked on in the addressbook.

I managed to implement the addressbook in my app.

In ios4 the following ‘works’:

- (BOOL)peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker 
      shouldContinueAfterSelectingPerson:(ABRecordRef)person  
                                property:(ABPropertyID)property 
                              identifier:(ABMultiValueIdentifier)identifier
{
    if (property == kABPersonAddressProperty)  // if tapped is equal to a phone property
    {
        NSLog(@"Address tapped!");
        NSMutableDictionary * cfaddress;
        ABMultiValueRef address = ABRecordCopyValue(person, kABPersonAddressProperty); 
        for(CFIndex i = 0; i < ABMultiValueGetCount(address); i++) {
            if(identifier == ABMultiValueGetIdentifierAtIndex (address, i)) { //if tapped number identifier is the same as identifier number tapped
                cfaddress = ABMultiValueCopyValueAtIndex(address, i); // copy the number to CFSTRING number
            }
        }        

        NSLog(@"%@", [cfaddress objectForKey:@"City"]);    
        NSLog(@"%@", [cfaddress objectForKey:@"Street"]);

        // City and street present ?

        if([cfaddress objectForKey:@"City"] && [cfaddress objectForKey:@"Street"]){
            NSLog(@"STAD EN STRAAT");
        }
        else{
            NSLog(@"GEEN STAD EN/OF STRAAT");
        }
    }

    [self dismissModalViewControllerAnimated:YES];
    return YES;
}

Unfortunately in ios5 with Automatic reference counting on this gives me the following error:

error: Automatic Reference Counting Issue: Implicit conversion of a non-Objective-C pointer type ‘CFTypeRef’ (aka ‘const void *’) to ‘NSMutableDictionary *’ is disallowed with ARC

I’m guessing my way of doing this (for ios4) wasn’t a good way anyway and I would really appreciate some suggestions on how to achieve this. Thanks in advance!

  • 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-27T14:28:59+00:00Added an answer on May 27, 2026 at 2:28 pm

    repalace this

    cfaddress = ABMultiValueCopyValueAtIndex(address, i);
    

    with this

    cfaddress = [NSMutableDictionary dictionaryWithDictionary:(NSDictionary *)ABMultiValueCopyValueAtIndex(address, i)];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm fairly new to Objective-C and I can't figure out how to wait in
I'm fairly new to C++ and an trying to figure out to use the
Being fairly new to iPhone / Objective-C development, I wanted to ask this question
I am fairly new to developing C/C++ code in MSVS but one of the
Being fairly new to JavaScript, I'm unable to discern when to use each of
After reading Jeff's blog post and being fairly new to GUI programming, I'm wondering
I'm confused as to the difference. Being fairly new to .Net, I know I
First let me state that, despite being a fairly new practitioner of TDD, I'm
Being fairly new to C++ I have a question bascially concerning the g++ compiler
I'm fairly new to nHibernate having come from an EF background and I'm struggling

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.