使用 iPhone 联系人选择器检索某人的地址
通过此方法:- (BOOL)peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker shouldContinueAfterSelectingPerson:(ABRecordRef)person
我如何获得完整的街道地址+城市+国家和邮政编码...
谢谢。
From this method :- (BOOL)peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker shouldContinueAfterSelectingPerson:(ABRecordRef)person
How I can get the full street address + city + country and zipcode...
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自苹果文档:
ABRecordCopyValue
返回记录属性的值。
参数
记录
包含相关属性的记录。
属性
正在返回其值的记录的属性。请参阅 ABPerson 参考中的“常量”和 ABGroup 参考中的“常量”中的属性。
返回值
记录中的属性值。
因此,您只需向 ABRecord 询问具体属性即可,应该没问题!
From the Apple documentation:
ABRecordCopyValue
Returns the value of a record property.
Parameters
record
The record containing the property in question.
property
The property of record whose value is being returned. See properties in “Constants” in ABPerson Reference and “Constants” in ABGroup Reference.
Return Value
The value of property in record.
So you would just ask your ABRecord for the specific properties and you should be fine!