写真集アプリを作る場合バーを半透明にしたいので調べていたところ
下記コードでできるみたい。
// ナビゲーションバーを半透明に(selfはUIViewController)
self.navigationController.navigationBar.barStyle = UIBarStyleBlack;
self.navigationController.navigationBar.translucent = YES;
// ツールバーを半透明に(selfはUIViewController)
self.navigationController.toolbar.barStyle = UIBarStyleBlack;
self.navigationController.toolbar.translucent = YES;
// ちなみにステータスバーは、これまでどおりでOK
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleBlackTranslucent
情報元は下記ブログ
http://iphone-dev.g.hatena.ne.jp/tokorom/20090822/1250919617
0 件のコメント:
コメントを投稿