What is the best way to share data between users of the same app - like a shared list of items that only 2 specific users can see and edit. My question is about the data transfer part - is there any service or framework I can use? I would like to avoid creating the server part myself.

Thank you!

有帮助吗?

解决方案

If you don't want to deal with your own server side implementation then you could use one of the PAS (platform as a service) providers like StackMob, Parse or Azure. They all offer persistent storage via a very simple iOS API. If your needs are simple, you can probably use StackMob for free. Something like Azure or Amazon will give you a lot more features and flexibility, but will cost money after the initial trial is over.

其他提示

Currently there is no such thing. The closest you could get is in terms of API functionality are turn-based matches in Game Center, but the match data can be manipulated only in turns, and therefore this API most likely will not work for you. Running your own server given all those great offers from Google, Amazon, and others, is not a scary thing at all and will reward you with more flexibility.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top