TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | BSD |
ReleasedLast Release | Mar 2015 |
Maintained by Unclaimed.
Objective-C Address Book wrapper. Provides functionality to create/update/delete contacts from the device address book.
#import "ABContactsHelper.h"
// Array of all contacts
NSArray *contacts = [ABContactsHelper contacts];
// Create a new contact
ABContact *contact = [ABContact contact];
contact.firstName = @"Jim";
contact.lastName = @"Thompson";
Contains a demo app which shows listing, adding, and removing contacts from the device address book.