iOS development--Call the system Address Book interface

Source: Internet
Author: User

Today write code encountered to call the system Address Book, read some blog found to write is to get the contents of the Address book, rather than call the system interface.

Share the code you wrote

First step: Introduce

#import <AddressBook/AddressBook.h> #import <AddressBookUI/AddressBookUI.h>

Step Two: Add a click event to create an address Book interface and jump to present

#pragma mark-ibaction-(ibaction) buttonclicked: (ID) Sender {    Abpeoplepickernavigationcontroller *peoplepicker = [[Abpeoplepickernavigationcontroller alloc] init];    Peoplepicker.peoplepickerdelegate = self;    [Self Presentviewcontroller:peoplepicker animated:yes completion:nil];}
Step Three: Implement Proxy method Abpeoplepickernavigationcontrollerdelegate

#pragma mark-abpeoplepickernavigationcontrollerdelegate-(void) Peoplepickernavigationcontroller: ( abpeoplepickernavigationcontroller*) Peoplepicker Didselectperson: (abrecordref) Person property: (Abpropertyid) Property identifier: (Abmultivalueidentifier) identifier {        Abmultivalueref valuesref = abrecordcopyvalue (person, Kabpersonphoneproperty);    Cfindex index = abmultivaluegetindexforidentifier (valuesref,identifier);    Cfstringref value = Abmultivaluecopyvalueatindex (valuesref,index);        [Self dismissviewcontrolleranimated:yes completion:^{        self.textField.text = (__bridge nsstring*) value;    }];}
Here's what you need to explain is that the method provided here begins to apply to IOS8


iOS development--Call the system Address Book interface

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.