문제

I started to advertise, started to browse. When on the same WiFi, it works.

But when I turn WiFi off, and leaving only Bluetooth, nor even the -(void)browser:(MCNearbyServiceBrowser*) browser foundPeer:(MCPeerID*) peerID withDiscoveryInfo:(NSDictionary*) info gets called.

Do I have to indicate to advertise on Bluetooth explicitly somehow? Or should it work this way seamlessly?

With GameKit there was a setting for this. I can't find any similar in MC.

도움이 되었습니까?

해결책

The same code will work.

No need to explicitly advertise on Bluetooth. It will automatically come. Just take care of keeping bluetooth of both devices ON.

There is no explicit setting for bluetooth or Wifi, It will connect devices in whatever possible way they are available.

다른 팁

Oh, it was discoveryInfo. I was included it just before trying the setup over Bluetooth.

But as it turned out, this discoveryInfo dictionary have plenty of exceptional rules. See initWithPeer:discoveryInfo:serviceType:

// This won't work without a single line of warnings or errors (!).
info = @{ @"myID" : @(102) };

// This will work.
info = @{ @"myID" : @"102" };
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top