ナビゲーションバーに黒い透明な外観を使用したい。私は、ストーリーボードを使用している場合iPhone iOS5ストーリーボードの変更ナビバーの外観
[[UINavigationBar appearance] setTintColor:[AppColors navBarColor]];
[[UINavigationBar appearance] setBarStyle:UIBarStyleBlackTranslucent];
[[UINavigationBar appearance] setAlpha:0.7];
[[[UITableView appearance] backgroundView]setBackgroundColor:[AppColors tableViewBackgroundColor]];
[[[UITableViewCell appearance] backgroundView]setBackgroundColor:[AppColors tableViewCellBackgroundColor]];
は、このコードは行くだろう:私の非ストーリーボードのアプリケーションでは、私はAppDidFinishLoadingWithOptions
でこのコードを置くことができますか?アプリの起動が完了する前にコントローラがロードされているようです。
ありがとうございました!
doh!同じことをする:) –