新视图动画和重叠选项卡栏
我有一个选项卡栏,在一个视图控制器中有一个按钮。当用户按下按钮时,我想让带有 tableView 作为 rootView 的 navController 视图显示动画。
但导航栏上方有一个小的空条纹。
-(void)pressButton{
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:tableViewController];
[[self view] addSubview:[navController view]];
}
像这样的东西... 如果新视图也与 tabBar 重叠,那就更好了......
i have a tabbar and in one viewController there is a button. When the user presses the button, i would like to let a view of a navController with a tableView as rootView appear animated.
but there is a small empty stripe above the navigationbar.
-(void)pressButton{
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:tableViewController];
[[self view] addSubview:[navController view]];
}
something like this...
it would be even greater if the new view overlaps the tabBar as well...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发布这个问题太快了......这是答案:
i posted this question too fast.... here is the answer: