动态 Android 和 iPhone 应用程序 节日活动应用程序
有没有一种方法可以构建 Android 和 iPhone 应用程序来自动更新其内容。
例如:用户已经下载了应用程序,我们的所有数据都在那里,但随后我们得到了另一位即将参加节日的艺人,我们希望将他们列在应用程序中。我是否必须“发布”更新供用户下载,所有这些信息是否都是动态的,并且每次用户有互联网时都会自动从服务器检索。
这对任何人都有意义吗,我希望如此。
Is there a way to build and Android and iPhone application that automatically updates its content.
For Example: the user has download the application and we have all of our data on there and what not but then we get another entertainer that is coming to the festival and we want to list them in the app. Do I have to "Publish" an update for the users to download of can all that information be dynamic and automatically retrieved from a server every time the person has internet.
Does that makes sense to anyone, I hope it does.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简短的回答是肯定的。
如何实现这一目标是扩大一个主题,而不提供有关您的具体情况的更多信息。一般来说,您需要做的是将您的内容在线托管在某个地方,并让您的应用程序在启动时提取最新版本。
在线存储数据的方法有很多种,XML、JSON、RSS 是一些非常常见的方法。您想要使用哪个取决于您共享的数据的具体内容。
The short answer is yes.
How you achieve it is to broad a topic without some more information about your specific situation. In general what you'll be looking to do is host your content online somewhere and have your application pull the most recent version when it begins.
There are many possible ways you could store your data online XML, JSON, RSS are a few that are pretty common. Which you'd want to use depends on exactly what the data you are sharing is.