我已经做了三天以上的研究来解决我的问题,我没有看到任何人解决我的问题。浏览器邀请广告商,广告商接受,并且MCSession更改为已连接状态。但是,一旦关闭MCBrowserViewController(通过取消或完成按钮),MCSession将断开连接。只要我不关闭MCBrowserViewController,MCSession就会保持连接状态。我不明白为什么或如何工作,我甚至尝试调试过程,但它深入到线程让我理解。
请告诉我,我的代码有问题。
-(void)setUpMultiPeer{
self.myPeerID = [[MCPeerID alloc] initWithDisplayName:pos];
self.mySession = [[MCSession alloc] initWithPeer:self.myPeerID];
self.browserVC = [[MCBrowserViewController alloc] initWithServiceType:@"svctype" session:self.mySession];
self.advertiser = [[MCAdvertiserAssistant alloc] initWithServiceType:@"svctype" discoveryInfo:nil session:self.mySession];
self.browserVC.delegate = self;
self.mySession.delegate = self;
}
-(void)dismissBrowserVC{
[self.browserVC dismissViewControllerAnimated:YES completion:nil];
}
-(void)browserViewControllerDidFinish:(MCBrowserViewController *)browserVC{
[self dismissBrowserVC];
}
-(void)browserViewControllerWasCancelled:(MCBrowserViewController *)browserViewController{
[self dismissBrowserVC];
}
-(void)session:(MCSession *)session peer:(MCPeerID *)peerID didChangeState:(MCSessionState)state{
if (state == MCSessionStateConnected) {
NSLog(@"Connected!");
//Not entirely sure about this next line...
self.mySession = session;
}
else if (state == MCSessionStateNotConnected){
NSLog(@"Disconnected");
dispatch_async(dispatch_get_main_queue(), ^(void) {
UIAlertView *alert = [[UIAlertView alloc]initWithTitle: @"Somebody Left!"
message: [[NSString alloc] initWithFormat:@"%@", [peerID displayName]]
delegate: nil
cancelButtonTitle:@"Got it"
otherButtonTitles:nil];
[alert show];
});
}
}
//Called by a UIButton
-(IBAction)browseGO:(id)sender {
[self setUpMultiPeer];
[self presentViewController:self.browserVC animated:YES completion:nil];
}
//Called by a UISwitch
-(IBAction)advertiseSwitch:(id)sender {
if (_advertiseSwitcher.on) {
[self setUpMultiPeer];
[self.advertiser start];
}
else{
[self.advertiser stop];
}
}
我还尝试为每个浏览器和广告商使用唯一的MCSession,但没有成功。
答案 0 :(得分:0)
我为解决问题所做的是从零开始。等待StackOverflow和Apple开发者论坛的答案花了太长时间,所以我回到了最初的工作,我将再次从那里开始。
Here是我发现的一个很棒的教程的链接。我希望这有助于某人解决他们的问题。
但是,如果有人在问题中看到我的代码完全错误,那么请告诉我们!我想知道导致这个bug的原因,以便我可以从错误中吸取教训。
感谢您停下来阅读这个问题。