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.
我正在使用 MultipeerConnectivity 框架在我的应用程序中连接两个 iOS 设备。我可以使用此框架连接两台设备,但将事件从一台设备发送到另一台设备需要将近一分钟。我现在正在模拟器上测试这个,所以我不确定这是否会导致延迟。
我是否应该使用不同的框架从一个设备或另一个设备传递 2-3 个变量的值以使其快速?
在 MultiPeerConnectivity 框架中,默认情况下,接收者的回调发生在后台线程当您从会话委托接收数据时,您需要在主线程上完成您的工作:
[[NSOperationQueue mainQueue] addOperationWithBlock:^{ //do your work here }];