使用 MySQL 和 Xcode
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/5628037/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Working with MySQL and Xcode
提问by Skovie
I've been programing for some time now, and the thing I get asked the most is, how about MySQL database.
我已经编程一段时间了,我被问到最多的是,MySQL 数据库怎么样。
What are some good sites for learning about data base programing with xcode, so I can make a app work together with a web site?
有哪些学习使用 xcode 进行数据库编程的好网站,以便我可以将应用程序与网站一起使用?
回答by Rui
To integrate an iPhone/iPad application with mysql you need to develop webservices and then call them in your app. I would suggest the use of JSON, SOAP, XML or PHP, some examples:
要将 iPhone/iPad 应用程序与 mysql 集成,您需要开发网络服务,然后在您的应用程序中调用它们。我建议使用 JSON、SOAP、XML 或 PHP,一些示例:
http://www.raywenderlich.com/2941/how-to-write-a-simple-phpmysql-web-service-for-an-ios-apphttp://www.icodeblog.com/2008/11/03/iphone-programming-tutorial-intro-to-soap-web-services/ http://www.devx.com/wireless/Article/43209
http://www.raywenderlich.com/2941/how-to-write-a-simple-phpmysql-web-service-for-an-ios-apphttp://www.icodeblog.com/2008/11/03 /iphone-programming-tutorial-intro-to-soap-web-services/ http://www.devx.com/wireless/Article/43209
There are a lot of combinations possible.... you can use php or .net or other frameworks, so it's hard to give you a complete list of tutorials.
可能有很多组合....您可以使用php或.net或其他框架,因此很难为您提供完整的教程列表。
If you want to develop a regular iOS application, i would suggest this link:
如果你想开发一个常规的 iOS 应用程序,我会建议这个链接:
http://blog.iosplace.com/?p=30
http://blog.iosplace.com/?p=30
Hope it helps.
希望能帮助到你。