在窗口上添加隐藏视图
根据要求,当视图来回移动时,顶部导航栏不应移动...... 所以我在 UIWindow
的实例上添加了顶栏......但是当我打开相机时,这个顶栏也出现在那里......有什么方法可以隐藏这个顶栏。 我隐藏了默认导航栏,而是使用 imageView
对象。 我创建了一个函数,将其从 superView 中删除,但它不起作用。
代码::
UIImageView *imgViewNavigatioBar=[[UIImageView alloc] init];
imgViewNavigatioBar.frame=CGRectMake(self.window.bounds.origin.x, self.window.bounds.origin.y, kAppWidth, 100.0);
imgViewNavigatioBar.image=[UIImage imageNamed:kNavigationBarImage];
[[self window] addSubview:imgViewNavigatioBar];
As per the requirement the top navigatiobar should not move when view moves back and forth....
so I added the topbar on the instance of UIWindow
....but when I open the camera this topbar also appears there....Is there any way to hide this top bar.
I hid the default navigation bar and instead using the imageView
object.
I created a function which removes it from superView
but its not working.
Code::
UIImageView *imgViewNavigatioBar=[[UIImageView alloc] init];
imgViewNavigatioBar.frame=CGRectMake(self.window.bounds.origin.x, self.window.bounds.origin.y, kAppWidth, 100.0);
imgViewNavigatioBar.image=[UIImage imageNamed:kNavigationBarImage];
[[self window] addSubview:imgViewNavigatioBar];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加图像视图时,为该图像视图设置标签,如下所示。
然后,无论您想在任何类中隐藏该图像视图,请执行以下操作。
While adding the imageview, set a tag for that imageview as follows.
Then, where ever you want to hide that imageview from any class, do as follows.