itomorrow / MFContacts

MFContacts is a wrapper both on AddressBook.framework and Contacts.framework that gives the same APIs accross two framework and easy way to access the native address book.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MFContacts

Build Status License MIT  Support  platform 

MFContacts is a wrapper both on AddressBook.framework and Contacts.framework that gives the same APIs accross two framework and easy way to access the native address book.

Features

  • Load、modify、delete contacts from iOS address book asynchronously
  • Decide what contact data fields you need to read (for example, only name and phone number)
  • Sort contacts with array of any NSSortDescriptor

Installation

1. Download all the files in the `MFContacts` subdirectory.
2. Add the source files to your Xcode project.
3. In iOS 10.0 and after you need include the `NSContactsUsageDescription` key in your app’s `Info.plist` file and provide a purpose string for this key.

Read contacts

__weak __typeof(self) weakSelf = self;
[[MFContactsManager shareManager] readContacts:^(NSArray<MFContact *> *contacts, NSError *error) {
   if (contacts){
       [weakSelf.contacts removeAllObjects];
       [weakSelf.contacts addObjectsFromArray:contacts];
       [weakSelf.tableView reloadData];
       NSLog(@"load contact success!");
   } else if (error) {
       NSLog(@"load contact failed!");
   }
}];

Callback block will be run on main queue! If you need to run callback block on custom queue use readContactsOnQueue:completion: method

About

MFContacts is a wrapper both on AddressBook.framework and Contacts.framework that gives the same APIs accross two framework and easy way to access the native address book.

License:MIT License


Languages

Language:Objective-C 100.0%