UITabBarController隐藏底部
2016-06-01 本文已影响440人
FlyElephant
UITabBarController中的每个子控制展示内容,如果从内容页面跳转到详情页面的时候需要隐藏底部,我们可以设置
hidesBottomBarWhenPushed属性:
<pre><code>FlyElephantController *controller=[[UIStoryboard storyboardWithName:@"CourseCenter" bundle:nil] instantiateViewControllerWithIdentifier:@"FlyElephantController"]; controller.hidesBottomBarWhenPushed=YES; [self.navigationController pushViewController:controller animated:YES];
</code></pre>