5

我有一个使用 MultiPeer Connectivity 框架的应用程序。每次应用程序在 AppDelegate 中激活时,我都会创建一个新的 MCSession 一个 MCNearbyBrowserService 和一个 MCNearbyAdvertiserService 并调用开始浏览和开始广告。然后每次应用程序在 AppDelegate 中变为非活动状态时,我都会停止浏览和广告并将所有内容设置为零。我发现 MCNearbyBrowserService 导致其同步队列崩溃:

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -    [__NSPlaceholderDictionary initWithObjects:forKeys:count:]: attempt to insert nil object from objects[2]'
*** First throw call stack:
(0x2de3ee8b 0x381396c7 0x2dd7caef 0x2dd7c8b3 0x2f648167 0x2f6493af 0x3861e103 0x38622e77 0x3861ff9b 0x38623751 0x386239d1 0x3874ddff 0x3874dcc4)
libc++abi.dylib: terminating with uncaught exception of type NSException

有时当应用程序重新打开时。

这是我的 applicationDidBecomeActive 代码:

self.myIdentifier = [[MCPeerID alloc] initWithDisplayName:[self.class createHash:20]];

self.mainSession = [[MCSession alloc] initWithPeer:self.myIdentifier];
self.mainSession.delegate = self;

peerAdvertiser = [[MCNearbyServiceAdvertiser alloc] initWithPeer:self.myIdentifier discoveryInfo:nil serviceType: service];
peerAdvertiser.delegate = self;
peerBrowser = [[MCNearbyServiceBrowser alloc] initWithPeer:self.myIdentifier serviceType: service];
peerBrowser.delegate = self;

acceptReset = [NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(reset) userInfo:nil repeats:YES];
acceptPosts = true;
[peerBrowser startBrowsingForPeers];
[peerAdvertiser startAdvertisingPeer];

self.isBrowsing = true;

这是我的 applicationWillResignActive 代码:

[acceptReset invalidate];
[peerAdvertiser stopAdvertisingPeer];
[peerBrowser stopBrowsingForPeers];
[self.mainSession disconnect];
self.mainSession = false;
self.isBrowsing = false;

完整代码可以在这里查看:http: //pastebin.com/E3wY6U4N

4

1 回答 1

3

我记得遇到过这个问题,快速解决方法是取消代表并释放浏览器和广告商。因此,假设您的 App Delegate 对每个设置方法都有一个强大的属性,则如下所示:

self.peerAdvertiser = [[MCNearbyServiceAdvertiser alloc] initWithPeer:self.myIdentifier discoveryInfo:nil serviceType: service];
self.peerAdvertiser.delegate = self;

self.peerBrowser = [[MCNearbyServiceBrowser alloc] initWithPeer:self.myIdentifier serviceType: service];
self.peerBrowser.delegate = self;

然后当应用程序进入后台(或以其他方式想要停止浏览/广告)时:

self.peerAdvertiser.delegate = nil;
[self.peerAdvertiser stopAdvertisingPeer];
self.peerAdvertiser = nil;

self.peerBrowser.delegate = nil;
[self.peerBrowser stopBrowsingForPeers];
self.peerBrowser = nil;

[self.mainSession disconnect];

我还建议不要MCPeerID在每次应用程序启动时创建一个新的,因为 Multipeer Connectivity 有发现旧同行的习惯,并且您最终会在每次重新启动时发现您的“以前的自我”。

于 2014-06-25T00:20:34.290 回答