UITabBarController

UITabBar を隠すコードを自分のアプリに実装してみる

画面の回転時に TabBar を消したいので、自分は - (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration にこのコードを入れることにした。 willAnimateRotationToInterfaceOr…

まずは「UITabBar 隠す」で検索してみる

とりあえず検索して見つけたのはこの情報。 頭と尻尾はくれてやる! タブバーを隠す方法 で、上記ページが参考にしているのがこのページ。 Hide UITabBarController/UITabBar with animation. - Notes of a Developer コードを見てみると、tabBarController …

UITabBarController も回転するかどうか答えてた!

そんなわけで、どうなってるんだろう?と調べてみたら -[UITabBarController _doAllViewControllersSupportInterfaceOrientation:]こんなん呼んでた…。 ”たぶん”、各 tab の表示されてる UIViewController に - (BOOL)shouldAutorotateToInterfaceOrientatio…