使用 iPhone 联系人选择器检索某人的地址

发布于 2024-11-09 11:19:12 字数 219 浏览 0 评论 0原文

通过此方法:- (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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

变身佩奇 2024-11-16 11:19:12

来自苹果文档:

ABRecordCopyValue
返回记录属性的值。

CFTypeRef ABRecordCopyValue (
   ABRecordRef record,
   ABPropertyID property
);

参数

记录

包含相关属性的记录。

属性

正在返回其值的记录的属性。请参阅 ABPerson 参考中的“常量”和 ABGroup 参考中的“常量”中的属性。

返回值

记录中的属性值。

因此,您只需向 ABRecord 询问具体属性即可,应该没问题!

  • const ABPropertyID kABPersonAddressProperty;
  • const CFStringRef kABPersonAddressStreetKey;
  • const CFStringRef kABPersonAddressCityKey;
  • const CFStringRef kABPersonAddressStateKey;
  • const CFStringRef kABPersonAddressZIPKey;
  • const CFStringRef kABPersonAddressCountryKey;
  • const CFStringRef kABPersonAddressCountryCodeKey;

From the Apple documentation:

ABRecordCopyValue
Returns the value of a record property.

CFTypeRef ABRecordCopyValue (
   ABRecordRef record,
   ABPropertyID 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!

  • const ABPropertyID kABPersonAddressProperty;
  • const CFStringRef kABPersonAddressStreetKey;
  • const CFStringRef kABPersonAddressCityKey;
  • const CFStringRef kABPersonAddressStateKey;
  • const CFStringRef kABPersonAddressZIPKey;
  • const CFStringRef kABPersonAddressCountryKey;
  • const CFStringRef kABPersonAddressCountryCodeKey;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文