美文网首页
5.iOS调用系统通讯录

5.iOS调用系统通讯录

作者: Matt_Z_ | 来源:发表于2017-05-04 11:34 被阅读0次

第一步:导入头文件
#import <addressbookui/AddressBookUI.h>
第二步:添加点击事件,跳转到系统通讯录界面
ABPeoplePickerNavigationController *_ab;

/** 跳转到系统通讯录 */
- (void)phoneButtonClick {
    _ab = [[ABPeoplePickerNavigationController alloc] init];
    _ab.peoplePickerDelegate = self;
    [self presentViewController:_ab animated:YES completion:nil];
}

相关文章

网友评论

      本文标题:5.iOS调用系统通讯录

      本文链接:https://www.haomeiwen.com/subject/rmmrtxtx.html