我想删除状态栏到导航栏的距离。怎么做?
if ([self.navBar respondsToSelector:@selector(setBackgroundImage:forBarMetrics:)])
{
[self.navBar setBackgroundImage:[UIImage imageNamed:@"bar-top"]
forBarMetrics:UIBarMetricsDefault];
}
答案 0 :(得分:1)
试试这个:
self.navigationController.navigationBar.frame.size.height
或者您可以创建自定义的。
Designing a Custom iPhone App Navigation Bar
或