顶部 UIView 的透明度不起作用
在 UINavigationController
中,我有一个 UITableView
。我使用设置按钮来允许用户更改一些表设置。
当点击设置按钮时,我将一个新视图推送到导航堆栈上。
这个新视图具有以下视图结构
-> UIView1
411 x 320 px(背景颜色应该是透明的)!!!!
-->> UIView2
270 x 300 px(backgroundColor 灰色)
--->>>>>屏幕元素
我的问题是我希望 UIView1 是透明的,以便后面的信息仍然可见。我所有的尝试,例如
将背景颜色设置为透明
更改alpha值
删除不透明指示器
失败。
有什么线索吗?非常感谢!
In a UINavigationController
I have a UITableView
. I use a settings-button to allow users changing some table settings.
When the settings-button is tapped I push a new view onto the navigation stack.
This new view has the following view structure
-> UIView1
411 x 320 px (backgroundColor supposed to be transparent) !!!!
-->> UIView2
270 x 300 px (backgroundColor grey)
--->>> Screen elements
My problem is that I want UIView1
to be transparent so that the information behind is still visible. All my attempts, such as
setting the bg color to transparent
changing the alpha value
removing the Opaque indicator
have failed so far.
Any clues? most appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UINavigationController 的设计不允许“隐藏”视图控制器仍然显示在当前可见视图控制器下。 (iOS 框架实际上可以卸载导航堆栈上不是当前顶部项目的视图控制器的视图!)
因此,如果您尝试这样做,它不会工作,或者您会遇到问题。 (iPhone 上的模态视图控制器也是如此 - 即使您使背景透明,您在其上推送的视图也会消失。)
如果您确实希望旧的 UI 在下面仍然可见,请考虑展示您的新 UI整个 UI 作为 UIView 放置在当前视图上(即执行
[existingView addSubview:myNewView]
)。UINavigationController is not designed to allow "buried" view controllers to still be showing under the current visible view controller. (The iOS framework can actually unload the views of view controllers on the nav stack that aren't the current top item!)
So if you try to do it, it just won't work, or you'll have problems. (Same goes for modal view controllers on the iPhone -- even if you make the background transparent, the view you're pushing on top of will disappear.)
If you really want the old UI to still be visible underneath, consider presenting your new entire UI as a UIView placed over the current view (i.e. do
[existingView addSubview:myNewView]
).