iPhone 通讯录备份应用
我想为 iPhone 制作一个联系人备份应用程序,它将所有联系人详细信息保存到网络服务器。我应该遵循什么步骤来做到这一点?
I want to make a contacts back up app for iPhone which will save all contacts details to a web server. What steps should I follow to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要使用 AddressBook 框架。这是一个参考:
http://developer.apple.com/library/ ios/#documentation/ContactData/Conceptual/AddressBookProgrammingGuideforiPhone/Introduction.html
至于实际备份数据,您很可能希望有一个 php 页面来获取数据、解析数据,然后备份它到 mySQL 数据库中。
希望这有帮助!
You will need to the use the AddressBook Framework. Here is a reference:
http://developer.apple.com/library/ios/#documentation/ContactData/Conceptual/AddressBookProgrammingGuideforiPhone/Introduction.html
As far as actually backing up the data, you'll most likely want to have a php page which takes data, parses it, and then backs it up into a mySQL database.
Hope this helps!