美文网首页
tabbar隐藏

tabbar隐藏

作者: 芥子劫 | 来源:发表于2016-07-26 15:47 被阅读0次

- (void)viewWillAppear:(BOOL)animated

{

[super viewWillAppear:animated];

self.tabBarController.tabBar.hidden = YES;

self.tabBarController.tabBar.bounds = CGRectMake(0, 0, 0, 0);

- (void)viewWillDisappear:(BOOL)animated

{

[super viewWillDisappear:animated];

self.tabBarController.tabBar.hidden = NO;

self.tabBarController.tabBar.bounds = CGRectMake(0, self.view.frame.origin.y - 64, self.view.frame.size.width, 44);

}

相关文章

网友评论

      本文标题:tabbar隐藏

      本文链接:https://www.haomeiwen.com/subject/htwnjttx.html