Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在考虑为连锁影院制作应用程序。我在目标 c 方面有经验,但可能没有从互联网加载数据。
我要问的是从互联网将数据加载到应用程序的最佳方式是什么。数据将是电影的图像、名称和时间之类的东西?
谢谢
最好的方法是 JSON。对于电影,您可以使用http://www.omdbapi.com/。是 IMDB 的非官方 api。
来自api的 JSON 响应可以使用NSURLConnection您可以查看苹果的文档来使用,或者您可以简单地使用RestKit。
NSURLConnection