- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用广告商助手和浏览器 View Controller 来实现 iOS Multipeer Connectivity 框架。这看起来很简单,但浏览器从未找到我的其他设备。这是代码:
@property (nonatomic, strong) MCSession *peerSession;
- (void)startSession {
MCPeerID *peerId = [[MCPeerID alloc] initWithDisplayName:[[UIDevice currentDevice] name]];
self.peerSession = [[MCSession alloc] initWithPeer:peerId];
self.peerSession.delegate = self;
MCAdvertiserAssistant *advertiser = [[MCAdvertiserAssistant alloc] initWithServiceType:@"myapp" discoveryInfo:nil session:self.peerSession];
[advertiser start];
}
- (void)openBrowser {
MCBrowserViewController *peerBrowser = [[MCBrowserViewController alloc] initWithServiceType:@"myapp" session:self.peerSession];
peerBrowser.delegate = self;
[self.appDelegate.mainViewController presentViewController:peerBrowser animated:TRUE completion:nil];
}
这在两台 iOS 9.3 设备上运行,都打开了蓝牙,并连接到同一个 Wi-Fi 网络。浏览器窗口打开但显示“正在搜索...”并且从不显示其他设备。
我尝试在我尝试浏览的设备上只运行广告商代码。我还尝试直接使用 MCNearbyServiceAdvertiser 和 MCNearbyServiceBrowser。两种变化都没有影响。
我还没有找到任何讨论这个问题的网页,所以希望我遗漏了一些简单明了的东西!
最佳答案
您需要保留对您的 MCAdvertiserAssistant
的引用。它在 startSession
结束时超出范围并被释放。
@property (nonatomic, strong) MCAdvertiserAssistant *advertiser;
- (void)startSession {
MCPeerID *peerId = [[MCPeerID alloc] initWithDisplayName:[[UIDevice currentDevice] name]];
self.peerSession = [[MCSession alloc] initWithPeer:peerId];
self.peerSession.delegate = self;
self.advertiser = [[MCAdvertiserAssistant alloc] initWithServiceType:@"myapp" discoveryInfo:nil session:self.peerSession];
[self.advertiser start];
}
关于iOS MCBrowserViewController 卡在 "Searching...",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37448995/
有没有办法创建一个 UITableView 来容纳在 MCBrowserViewController 中找到的相同信息?我当前的代码只允许推送与我的应用程序设计不同的标准 View : self.br
我正在尝试使用广告商助手和浏览器 View Controller 来实现 iOS Multipeer Connectivity 框架。这看起来很简单,但浏览器从未找到我的其他设备。这是代码: @pro
所以,我一直试图让 MCBrowserViewController 出现,但我没有成功。我正在尝试在我为 iOS 开发的应用程序中创建它。谁能帮忙?这是我的代码: import UIKit impor
我希望多人连接点选择器 View 像应用中的其他所有内容一样启动并保持横向。 plist 有“Supported interface orientations”,仅包含“landscape(右主页按钮
我是一名优秀的程序员,十分优秀!