set device name to a peer in session Multipeer connectivity swift3

324 Views Asked by At

I want to build an app something like queue manage that request a queue and call the queue to counter service number 1 2 3 problem is how can I set the device to counter 1, counter 2 depends on device connected

thanks for answer

1

There are 1 best solutions below

5
On
func session(_ session: MCSession, peer peerID: MCPeerID, didChange state: MCSessionState) {
    switch state {
    case .connected:
        print("connected", peerId)
        lbl.text = UIDevice.current.name
    case .connecting:
        print("connecting")
    case .notConnected:
        print("not Connected")
    default: break
    }
}

Try above code to show device name which is connected.