标签:
- (void) dialPhoneNumber:(NSString *)aPhoneNumber { NSURL *phoneURL = [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@",aPhoneNumber]]; if ( !phoneCallWebView ) { phoneCallWebView = [[UIWebView alloc] initWithFrame:CGRectZero]; } [phoneCallWebView loadRequest:[NSURLRequest requestWithURL:phoneURL]]; }
总结: 主要用到AddressBook.framework 和 AddressBookUI.framework两个框架
AddressBookUI顾名思义, 是ui部分的, 包含:
通讯录列表控制器:ABPeoplePickerNavigationController
联系人: ABPersonViewController
新联系人: ABNewPersonViewController
未知联系人: ABUnknowPersonViewController
AddressBook更为常用些:
ABAddressBook 通讯录人员的增删改
ABPerson 通讯录的查询
ABRecord 一个录人员, 获取人员的各种属性(电话 姓 名 公司 邮箱 备注...)
标签:
原文地址:http://www.cnblogs.com/apem/p/4350286.html