Frage

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.

War es hilfreich?

Lösung

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.

Andere Tipps

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" };
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top