UIKit

shouldAutorotateToInterfaceOrientation:はdeprecatedだよ!

iOS 6以前の「ねむスタ」ではこんな感じで各タブのビューを回転させるかさせないかを決めていた。 MyTabBarController.m - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation { if (self.tabBarController.sele…

iOS 5 の ModalView での NavigationController の問題の原因と対策

ちょこっと調べると Apple Developer Forum でさっくり答えは出てきた。 iOS 5 だと [self.navigationController parentViewController] が nil になってるって。(ModalViewController の parentViewController が nil になる。) デバッガで見てみると確か…

iOS 5になって動作しなくなった ModalView での NavigationController

今回やっちまったのは、アプリケーションで ModalView を表示して、その ModalView は NavigationController でできてるって構成。例えばアプリケーションの MainView にある「ModalView」ボタンをタップすると、下からニョロっと MyModalTopView が上がって…