GKMatchmaker findMatchForRequest invite never received

前端 未结 3 1731
轻奢々
轻奢々 2021-01-19 00:13

I\'m trying to invite nearby players to a match, but the invite is either never sent or never received.

GKMatchMaker startBrowsingForNearbyPlayersWithHandler works

3条回答
  •  伪装坚强ぢ
    2021-01-19 00:20

    This code is working in Swift if you know how you can convert it to Objective-C and to try it.

    GKMatchmaker.sharedMatchmaker().findMatchForRequest(
        request,
        withCompletionHandler: {(match : GKMatch!, error: NSError!) -> Void in
            NSLog("This works")
    })
    

提交回复
热议问题