使 UIView 大于其父视图

发布于 2024-12-03 11:57:19 字数 330 浏览 2 评论 0原文

我正在制作一个 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 技术交流群。

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

发布评论

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

评论(1

反差帅 2024-12-10 11:57:19

在我看来,如果视图 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文