デフォルトの cocos2d 1.0 ベータ テンプレートでは、AppDelegate.m にいくつかのコードがあります。
// AppDelegate.m
// IMPORTANT:
// By default, this template only supports Landscape orientations.
// Edit the RootViewController.m file to edit the supported orientations.
#if GAME_AUTOROTATION == kGameAutorotationUIViewController
[director setDeviceOrientation: kCCDeviceOrientationPortrait];
#else
[director setDeviceOrientation: kCCDeviceOrientationLandscapeLeft];
#endif
次に、GameConfig.h で、以下を定義しました。
// GameConfig.h
#define kGameAutorotationNone 0
#define kGameAutorotationCCDirector 1
#define kGameAutorotationUIViewController 2
//
// Define here the type of autorotation that you want for your game
#define GAME_AUTOROTATION kGameAutorotationUIViewController
一緒に、これは、デバイスの持ち方に応じて、横向きの左または横向きの右に自動回転する横向きのセットアップを作成するために機能していました. TableViews も同様に自動回転します (いくつかのテーブルをいくつかの cocos2d CCSscenes の上に配置しています)。
しかし...昨夜、iOS6にアップデートしました。XCode 4.5 と同様に。
私だけではないことを願っていますが、アプリのローテーションが完全に壊れています。少なくとも 1 つのテーブルビューのコードを使用して修正しようとしています... GAME_AUTOROTATION を変更してもテーブルビューには影響がないようです。
ゼロから始めて、事前に作成されたコードで作業するのではなく、何かを構築するだけかもしれませんが、これは非常にイライラします!! どうもありがとう、アップル!