在窗口上添加隐藏视图

发布于 2024-12-29 00:14:14 字数 538 浏览 1 评论 0原文

根据要求,当视图来回移动时,顶部导航栏不应移动...... 所以我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

热情消退 2025-01-05 00:14:14

添加图像视图时,为该图像视图设置标签,如下所示。

UIImageView *imgViewNavigatioBar=[[UIImageView alloc] init];
imgViewNavigatioBar.tag = 100;
...

然后,无论您想在任何类中隐藏该图像视图,请执行以下操作。

UIWindow *window = [[UIApplication sharedApplication] keyWindow];
UIImageView *iv = (UIImageView*)[window viewWithTag:100];
iv.hidden = YES;

While adding the imageview, set a tag for that imageview as follows.

UIImageView *imgViewNavigatioBar=[[UIImageView alloc] init];
imgViewNavigatioBar.tag = 100;
...

Then, where ever you want to hide that imageview from any class, do as follows.

UIWindow *window = [[UIApplication sharedApplication] keyWindow];
UIImageView *iv = (UIImageView*)[window viewWithTag:100];
iv.hidden = YES;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文