ios多应用怎么数据共享?

两个App之间通过什么方式共享数据问题,两个应用的切换然后欢迎App访问另一个App?请问各位大大们怎么解决?

iOS App运行在各自的sandbox中,没法直接通信,不过有一些其他方式
比如URL Schema的方式等
Using URL Schemes to Communicate with Apps

https://developer.apple.com/library/ios/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/Inter-AppCommunication/Inter-AppCommunication.html

建立一个服务器,让两个ios端链接服务端,然后通过发送socket数据来共享数据