使 UIView 大于其父视图
我正在制作一个 iPad 应用程序,并且 UIView 结构如下:
ViewA (parent) --> ViewB(ViewA 的子视图)--> ViewC(ViewB 的子视图)
ViewA 与屏幕大小相同。
ViewB 大约是屏幕大小的一半。
ViewC 的大小是 ViewB 的一半。
在某个事件发生时,我想修改ViewC的框架,使ViewC覆盖整个屏幕。最好的方法是什么?我不想让 ViewC 的框架超出 ViewB (并且我无法更改 ViewB 的框架)。
谢谢!
阳光明媚
I'm making an iPad app and I have a UIView structure as follows:
ViewA (parent) --> ViewB (subview to ViewA) --> ViewC (subview to ViewB)
ViewA is the same size as the screen.
ViewB is about half the size of the screen.
ViewC is half the size of ViewB.
Upon a certain event, I want to modify ViewC's frame so that ViewC covers the entire screen. What's the best way to do this? I'd rather not have ViewC's frame go outside of ViewB (and I can't change ViewB's frame).
Thanks!
Sunny
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我看来,如果视图 C 占据整个屏幕,视图 B 就不再相关。在您的设计中是否可以/安全地从 B 中删除子视图 C?
如果是这样,则从 B 中删除 C,然后将其作为子视图添加到 A 中。您甚至可以使用动画来完成此操作,使用静态方法
transitionWithView:duration:options:animations:completion:
UIView。As I see it, view B is no longer relevant if view C will occupy the whole screen. Is it possible/safe to remove the subview C from B in your design?
If so, then remove C from B, and then add it as a subview to A. You can even do it with an animation, using the static method
transitionWithView:duration:options:animations:completion:
from UIView.