iOS Xcode connecting to MySQL database

前端 未结 4 718
刺人心
刺人心 2020-12-29 09:00

I\'m currently making an iOS App for my school, and have no previous experience with iOS programming. However, I do have experience with HTML/PHP/MySQL.

Currently w

4条回答
  •  失恋的感觉
    2020-12-29 09:54

    There are no "over the air" APIs that will let you connect directly to a MySQL database. Instead, what you could do is create a RESTful web service in front of the database that returns the data as JSON via a request from an NSURLRequest object.

提交回复
热议问题