将联系人从 iPhone 模拟器导出到 iPhone 设备

发布于 2024-11-26 03:59:11 字数 34 浏览 2 评论 0原文

有谁知道这是否可能? 如果可能的话我该怎么做? 谢谢。

Does anyone know if this is even possible?
If it is possible how can I do this?
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

乖乖兔^ω^ 2024-12-03 03:59:11

您可以从这里获取模拟器中的联系人数据库。 ~/Library/Application Support/iPhone Simulator/User/Library/AddressBook/AddressBook.sqlitedb 但我不确定如何将其传输到设备

You can get the contact database in simulator from here. ~/Library/Application Support/iPhone Simulator/User/Library/AddressBook/AddressBook.sqlitedb but I am not sure how you can transfer it to device

哎呦我呸! 2024-12-03 03:59:11

我还没有尝试过这个,但是当您在模拟器上运行时,您可以将联系人保存为 nsdata (使用存档)。提取 nsdata 并使用 ABAddressBookAddRecord 将单个联系人保存到手机中。

对于在模拟器和设备上运行不同的代码:

#if (TARGET_IPHONE_SIMULATOR)
//simulator code

#else
//iphone code

I have not tried this but you can save contacts as nsdata (using archiving) when you run on simulator. Extract the nsdata and save individual contact using ABAddressBookAddRecord to the phone.

For running different codes on simulator and device:

#if (TARGET_IPHONE_SIMULATOR)
//simulator code

#else
//iphone code
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文