I am using cocos2d engine in landscape-only orientation with no autorotation.

I want to display standart GC achievements modal view. It's showing up normally, from bottom of screen (while holding device in landscape), but it is dismissing to the right side of the screen (like portrait modal views). It's seems to be changing orientation for dismiss animation, but view is not rotating before this. It's just sliding to the right.

Also I get a warning in console:

Unbalanced calls to begin/end appearance transitions for <UIViewController: 0x41b9a0>.

That's how I showing this controller:

-(void)showAchievements:(id) sender {

    utilityController = [[UIViewController alloc] initWithNibName:nil bundle:nil];
    [[[CCDirector sharedDirector] openGLView] addSubview:utilityController.view]; 

    GKAchievementViewController *achievements = [[GKAchievementViewController alloc] init];
    if (achievements != nil)
    {
        achievements.achievementDelegate = self;
        [utilityController presentModalViewController: achievements animated: YES];
    }
    [achievements release];
}

- (void)achievementViewControllerDidFinish:(GKAchievementViewController *)viewController
{
    [utilityController dismissModalViewControllerAnimated:YES];
    [utilityController release];
}

In gameConfig.h I have following configuration:

#define GAME_AUTOROTATION kGameAutorotationNone

Tried to change this to kGameAutorotationCCDirector - same thing. kGameAutorotationUIViewController - uiviews are jumping all over the screen.

Please do not suggest rotating UIView with CGAffineTransformMakeRotation - it's just a hack...

link|improve this question
feedback

1 Answer

For Kobold2D I solved this for all orientations with a category for the GKMatchmakerViewController. You can make the same category for the other Game Center view controllers.

This will force the GC views to use the current device orientation:

@implementation GKMatchmakerViewController (OrientationFix)
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // [RootViewController option removed for clarity]

    // all other autorotation types use the current device orientation
    ccDeviceOrientation orientation = [CCDirector sharedDirector].deviceOrientation;
    switch (interfaceOrientation)
    {
        case UIInterfaceOrientationPortrait:
            return (orientation == kCCDeviceOrientationPortrait);
            break;
        case UIInterfaceOrientationPortraitUpsideDown:
            return (orientation == kCCDeviceOrientationPortraitUpsideDown);
            break;
        case UIInterfaceOrientationLandscapeLeft:
            return (orientation == kCCDeviceOrientationLandscapeRight);
            break;
        case UIInterfaceOrientationLandscapeRight:
            return (orientation == kCCDeviceOrientationLandscapeLeft);
            break;
        default:
            break;
    }

    return NO;
}
@end
link|improve this answer
Thank you for the answer, but this orientation fix does not work for GKAchievementViewController for me. This view still slides up form the bottom when launching and after dismissing it - goes to the right side of the screen. – Condor Feb 6 at 12:29
As a reminder, this exapmle code is for GKMatchmakerViewController. Are you sure you modified it for GKAchievementViewController? – erkanyildiz Feb 20 at 23:08
Yes, of course.. Left it working this way for this time. Will investigate later. – Condor Mar 12 at 18:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.