こんにちは、cocos2d で IOS 用のアーバン エアシップ リッチ プッシュ通知を使用しています。リッチ通知の受信トレイを取得していますが、ポートレイト モードで取得しています。横向きモードで受信トレイを取得したい。
これが私が使用しているコードです
[UAInbox useCustomUI:[UAInboxUI class]];//sample UI implementation
[UAInbox shared].pushHandler.delegate = [UAInboxUI shared];
// If the application gets an UAInbox message id on launch open it up immediately.
// Only works for the default inbox
[UAInboxUI shared].inboxParentController=window_.rootViewController;
[UAInboxPushHandler handleLaunchOptions:launchOptions];
if ([[UAInbox shared].pushHandler hasLaunchMessage]) {
[[[UAInbox shared] uiClass] loadLaunchMessage];
}
// Create the main window
window_ = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
[UAInbox displayInbox:window_.rootViewController animated:YES];
どんな助けでも大歓迎です。前もって感謝します