导航栏自定义高度

时间:2012-11-17 10:22:47

标签: iphone uinavigationbar

我想删除状态栏到导航栏的距离。怎么做?

enter image description here

if ([self.navBar respondsToSelector:@selector(setBackgroundImage:forBarMetrics:)])
{
    [self.navBar setBackgroundImage:[UIImage imageNamed:@"bar-top"]
                      forBarMetrics:UIBarMetricsDefault];

}

1 个答案:

答案 0 :(得分:1)

试试这个:

self.navigationController.navigationBar.frame.size.height

或者您可以创建自定义的。

Designing a Custom iPhone App Navigation Bar

costume style