iOS 7 でナビゲーション バーの高さを変更することはできますか?
ナビゲーション バーが必要な理由: ビュー上の他の要素の正しい位置に問題なく透明なナビゲーション バーを表示するため。
偽の「ナビゲーション バー」を作成したくありません。この場合、すべての位置を自分で設定する必要があります。
iOS 7 でナビゲーション バーの高さを変更することはできますか?
ナビゲーション バーが必要な理由: ビュー上の他の要素の正しい位置に問題なく透明なナビゲーション バーを表示するため。
偽の「ナビゲーション バー」を作成したくありません。この場合、すべての位置を自分で設定する必要があります。
//make real nav bar invisible
self.navigationBar.barTintColor = [UIColor clearColor];
UIImage* transparentImage = [UIImage emptyImageWithSize:CGSizeMake(self.navigationBar.frame.size.width, 1) andBackgroundColor:[UIColor clearColor]];
[self.navigationBar setBackgroundImage:transparentImage forBarMetrics:UIBarMetricsDefault];
self.navigationBar.shadowImage = transparentImage;
その後
UINavigationBar* fakeNavigationBar = [[UINavigationBar alloc] initWithFrame:CGRectMake(0, 0, self.navigationBar.frame.size.width, neededHeight)];
fakeNavigationBar.barTintColor = [UIColor whiteColor];
[self.navigationBar insertSubview:fakeNavigationBar atIndex:0];
どこ
+ (UIImage*)emptyImageWithSize:(CGSize)size andBackgroundColor:(UIColor*)color
{
CGRect frameRect = CGRectMake(0, 0, size.width, size.height);
UIGraphicsBeginImageContext(size);
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(ctx, color.CGColor); //image frame color
CGContextFillRect(ctx, frameRect);
UIImage* resultImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return resultImage;
}
アプリのデリゲートで
UINavigationController *NavController=[[UINavigationController alloc]initWithRootViewController:HomeViewController];
[NavController.navigationBar setBounds:CGRectMake(10, 30, 40, 10)];