Handle Selected Turns / Games on iOS Game Center App on Game Center App Enabled

I am creating a GKTurnBasedMatch

Game Center app . I have successfully implemented methods GKLocalPlayerListener

to listen for events like player:receivedTurnEventForMatch:didBecomeActive:

other methods. Also, if the user enters an existing match in GKTurnBasedMatchmakerViewController

(for example, if showExistingMatches

set to YES

), I can handle the event in the method GKTurnBasedMatchmakerViewControllerDelegate

turnBasedMatchmakerViewController:didFindMatch:

.

However, I want to handle clicks on various controls to view the mapping in the iOS System Center app .

For example, if I go to the preinstalled Game Center iOS app (not my app), tap the Turns tab, tap the row for my app, tap match / rotate, and then tap View Game or Accept Invitation or Play as I go ", I want to handle these actions associated with a specific action in my application.

When these elements are listened to, my application does start, but as far as I can tell from reading the documentation, there is no way to get more information about what the user matches by clicking, so I can show that matching accordingly.

+3


source to share


1 answer


Apple has decided to remove this feature.

Their documentation is inaccurate. I opened a bug with Apple to investigate further. Here's the depressing proof.



Apple bug report

+1


source







All Articles