【发布时间】:2016-06-21 11:36:00
【问题描述】:
有人遇到这个问题吗?
当我从UIViewController 推送到情节提要基础viewController 并隐藏BottomBar 时,情节提要基础viewController 首先出现白色底部,情节提要基础viewController 的底部控件向下移动一下子,覆盖了白色的空白。有的朋友知道为什么会出现吗?以及如何解决这个问题?
代码在这里:
InformationCollectionViewController *info = [self.sb instantiateViewControllerWithIdentifier:@"InformationCollectionViewController"];
info.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:info animated:YES];
顺便说一句:如果我设置[self.navigationController pushViewController:info animated:NO];
不会显示那个问题。
【问题讨论】:
标签: ios animation push uitabbar