0
votes
1answer
34 views

View Controller not deallocated after adding GameKit

My view controller no longer gets deallocated after adding the following: @property (strong, nonatomic) GKLocalPlayer *player; (in viewDidLoad) self.player = nil; [self authenticatePlayer]; - ...
0
votes
1answer
56 views

Game Center authentication Handler will not dismiss Game Center login modal view controller

Got Game Center authentication working but when the Game Center 'Welcome' view controller appears in the view it will not dismiss. Hit cancel, the cancel action is sent but the view controller remains ...
2
votes
3answers
71 views

GKGameCenterViewController always shows Challenges instead of Leaderboards

I'm using Apple's code to show a GKGameCenterViewController: GKGameCenterViewController *gameCenterController = [[GKGameCenterViewController alloc] init]; if (gameCenterController != nil) { ...
3
votes
1answer
743 views

Game Kit with iOS6

I recently tried to authenticate the local user on iOS 6 with the new iOS 6 method, and it returns in the authenticate handler- localPlayer.authenticateHandler = ^(UIViewController *viewController, ...
1
vote
1answer
224 views

Underlying view disappears during game-center authentication

I have an iOS application that I'm just starting to implement game center support for. I call the authenticateWithCompletionHandler method during loadView for my main (root) view controller. My main ...
1
vote
1answer
5k views

Unbalanced calls to begin/end appearance transitions for <GKModalRootViewController: 0xb7e450>

I give up on that point, I just can't figure out what is wrong and where... Here is the problem: in my iPhone application using Cocos2d, I configured autorotation through a viewController; however, ...
1
vote
2answers
2k views

How to let UIViewcontroller (Game center) responds to the Orientation (Landscape or Portrait)?

i used the code below to show the game center but if I rotate the iPhone nothing happen and the Leaderboard will be upside-down (not respond for the orientation) The code // Create leaderboard view ...
0
votes
1answer
476 views

cocos2d Scene goes black after GameCenter leaderboard dismissal

Im having a strange problem that only occurs on the iPad version of my game. When I bring up the GameCenter leaderboard, it appears like normal. No issues there. But when you tap the close button the ...
1
vote
0answers
298 views

GKLeaderboardViewController not being fully released?

Im having a problem properly releasing a GKLeaderboardViewController, it seems to be leaking slightly and leaving behind amongst others UILabels, even though the controller itself is released, heres ...