将联系人从 iPhone 模拟器导出到 iPhone 设备
有谁知道这是否可能? 如果可能的话我该怎么做? 谢谢。
Does anyone know if this is even possible?
If it is possible how can I do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以从这里获取模拟器中的联系人数据库。
~/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我还没有尝试过这个,但是当您在模拟器上运行时,您可以将联系人保存为 nsdata (使用存档)。提取 nsdata 并使用 ABAddressBookAddRecord 将单个联系人保存到手机中。
对于在模拟器和设备上运行不同的代码:
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: