当桅杆类型为 GKPeerPickerConnectionTypeOnline 时出现异常

发布于 2024-12-17 07:35:44 字数 489 浏览 1 评论 0原文

我正在使用 GKPeerPickerController ,我需要使用 wifi 发送消息,所以我使用以下代码

         picker = [[GKPeerPickerController alloc] init];

         picker.connectionTypesMask= GKPeerPickerConnectionTypeOnline;
         picker.delegate = self;

,但是当我使用此以下错误时,

 Terminating app due to uncaught exception 'GKInvalidArgumentException', reason: 'A     GKPeerPickerController must support GKPeerPickerConnectionTypeNearby at a minimum.'

请帮助如何解决它?

I am using GKPeerPickerController , i need to send message using wifi , so iam using following code

         picker = [[GKPeerPickerController alloc] init];

         picker.connectionTypesMask= GKPeerPickerConnectionTypeOnline;
         picker.delegate = self;

but when i use this following error occurs

 Terminating app due to uncaught exception 'GKInvalidArgumentException', reason: 'A     GKPeerPickerController must support GKPeerPickerConnectionTypeNearby at a minimum.'

please help how to solve it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏夜暖风 2024-12-24 07:35:44

错误消息是您的答案:根据 文档: “GKPeerPickerConnectionTypeNearby 必须是允许的连接类型之一。如果您的应用程序不包含它,则会引发异常。”

The error message is your answer: according to the docs: "GKPeerPickerConnectionTypeNearby is required to be one of the allowed connection types. An exception is thrown if your application does not include it."

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文