0

我正在做一个交互式 iPad 应用程序,在这种情况下,我的应用程序将同时在多个 iPad 设备上打开,他们可以加入集体照片共享,其中一个用户选择他选择的照片,该选择将加入同一组的其他用户也可以在其设备中看到现场直播。

我刚刚知道这种行为可以通过使用 Javascript 的 Bayeux 协议实现,Dojo 用于 Web 应用程序。那么,是否有任何框架可以在 iOS 平台中实现此功能,或者是否有人知道如何在 xcode 中集成 Bayeux 协议。我对此一无所知,因此将不胜感激任何帮助和建议,以便我至少可以开始使用此功能。

4

1 回答 1

2

Forget about Bayeux Protocol and implementation details.

For stuff like that, such as connecting people that use the same app on similar device, and share their actions and so on, I think that considering GameKit (even if you application is not a game, as you still connect people that will use the application on different devices at the same time, and actions of one user will be refered on other user's devices) might be a good option.

See for example the GKPeerPickerViewController to connect users to each others, the GKTank example and so on.

于 2012-09-26T12:23:28.277 回答