我想改变导航栏的高度,我用以下方法做到了:
CGFloat navBarHeight = 100.0f;
CGRect frame = CGRectMake(0.0f, 0.0f, SCREEN_WIDTH, navBarHeight);
[self.navigationController.navigationBar setFrame:frame];
我想将此功能添加到UInavigationBar
类别。但是,我不知道该怎么做。如何将该代码块添加到UInavigationBar
的类别?
答案 0 :(得分:-2)
添加以下行
[self.view layoutIfNeeded];