UIButtonBarItem をカスタマイズするために、appdelegate に UIAppearance コードを追加しました。ナビゲーション コントローラーの戻るボタンは、UIappearance を取得します。しかし、最初のナビゲーションバーに表示するためにプログラムで作成した UIButtonBarItems は、uiappearance を取得しません。UIAppearance は、作成されたすべての UIButtonBarItems に適用されるはずではありませんか? UIButtonBarItem をストーリーボードのナビゲーション バーに配置すると、同じことが起こります。navbar は UIAppearance を取得しますが、UIButtonBarItem は取得しません。
appdelegate で
-(void) configureAppearance
{
// navbar background
UIView* bk0 = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 480.0f, 44.0f)];
UIView* bk1 = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 480.0f, 22.0f)];
UIView* bk2 = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 22.0f, 480.0f, 22.0f)];
[bk0 addSubview:bk1];
[bk0 addSubview:bk2];
bk1.backgroundColor=LIGHT_PURPLE;
bk2.backgroundColor=DARK_PURPLE;
UIImage* navimg=ChangeViewToImage(bk0);
[[UINavigationBar appearance] setBackgroundImage:navimg forBarMetrics:UIBarMetricsDefault];
#define BUTTON_SIZE 34.0f
UIView* bbk0 = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, BUTTON_SIZE, BUTTON_SIZE)];
UIView* bbk1 = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, BUTTON_SIZE, BUTTON_SIZE)];
bbk0.backgroundColor=[UIColor clearColor];
bbk1.backgroundColor=DARK_PURPLE;
[bbk0 addSubview:bbk1];
addBorderAndShadow(bbk1, VERY_DARK_PURPLE, 1.0, 2.0);
UIImage* bimg=ChangeViewToImage(bbk0);
bimg = [bimg resizableImageWithCapInsets:UIEdgeInsetsMake(0.0f, BUTTON_SIZE, 0, 0)]; // this will keep it square
[[UIBarButtonItem appearance] setBackButtonBackgroundImage:bimg
forState:UIControlStateNormal
barMetrics:UIBarMetricsDefault];
[[UIBarButtonItem appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(0, bimg.size.height*2) forBarMetrics:UIBarMetricsDefault]; // to not show text on button but still get nav ani
//[[UIBarButtonItem appearanceWhenContainedIn:[UINavigationBar class], nil] setBackButtonBackgroundImage:bimg forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
}
私のviewcontrollersの1つ(uiappearanceを取得しません
- (void)viewDidLoad
{
[super viewDidLoad];
// Uncomment the following line to preserve selection between presentations.
// self.clearsSelectionOnViewWillAppear = NO;
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
// self.navigationItem.rightBarButtonItem = self.editButtonItem;
//AppDelegate* appdel = (AppDelegate*)[[UIApplication sharedApplication] delegate];
//[appdel configureAppearance];
UIBarButtonItem* backButton = [[UIBarButtonItem alloc] initWithTitle:@"" style:UIBarButtonItemStylePlain target:self
action:@selector(revealMenu:)];
self.navigationItem.leftBarButtonItem = backButton;
}