hidesBottomBarWhenPushed

  以下写法,bottom bar可以在push 后消失(iOS (2.0 and later))
    TestViewController *testVC = [[TestViewController alloc] init];
      testVC.hidesBottomBarWhenPushed = YES;
     [self.navigationController pushViewController:testVC animated:YES];

你可能感兴趣的:(hidesBottomBarWhenPushed)