如何将新联系人发送到 iOS 联系人应用程序?
可能的重复:
如何从应用内添加联系人?
在我们的应用程序中,我们希望有一个“添加联系人”按钮,该按钮可以启动带有预先填充的新联系人的联系人应用程序。这可能吗?如果可能的话,如何实现?我想避免设计我们自己的“新联系人”表格。
Possible Duplicate:
How to add a contact from within an app?
In our app, we want to have an 'add contact' button, which launches the contacts app with a prepopulated new contact. Is that possible, and if so how? I'd like to avoid having to design our own 'new contact' form.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅此问题寻找答案。
基本上你需要使用 ABNewPersonViewController。
See this Question for your answer.
Basically you need to use ABNewPersonViewController.
实例化一个 ABNewPersonViewController 并以模态方式呈现它。您可以选择创建一个包含要预填充的值的
ABRecordRef
并将其分配给控制器的displayedPerson
属性。Instantiate a
ABNewPersonViewController
and present it modally. You can optionally create aABRecordRef
containing the values you want to be prepopulated and assign it to the controller'sdisplayedPerson
property.