在 iPhone 上获取联系人的邮件
我有一个具有“共享”功能的应用程序。 如何向用户列出 iPhone 上存储的联系人?
我可以在不退出我自己的应用程序的情况下执行此操作(必需)吗?
我可以在不打开任何外部视图的情况下获得联系人内容吗?
我认为它在某种程度上是安全的。
I have an application with kind-of "share" function. How can I list the contacts stored on the iPhone to the user?
Can I do it without exiting my own app (required)?
Can I have the contacts content without opening any external view?
I assume it is somewhat secured.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个名为 ABPeoplePickerNavigationController 的 NavigationController,您可以在应用程序中使用它来选择联系人或联系信息。 这可能会让您走上正确的道路。
类
描述:
ABPeoplePickerNavigationController 类(其实例称为人员选择器导航控制器)实现一个视图控制器,该控制器管理一组视图,允许用户从地址簿中选择联系人或其联系人信息项之一。
There is a NavigationController called ABPeoplePickerNavigationController that you can use in your app to select contacts or contact info. This may get you down the right path.
https://developer.apple.com/documentation/addressbookui/abpeoplepickernavigationcontroller
Class description:
The ABPeoplePickerNavigationController class (whose instances are known as people-picker navigation controllers) implements a view controller that manages a set of views that allow the user to select a contact or one of its contact-information items from an address book.