Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在另一个 uiview B 中有一个 uiview A。A 包含许多其他 ui 对象,例如 uitableview、uitextfield、按钮等。在 A uiview 我有用于放大或缩小的按钮。如果用户点击放大我的uiview A覆盖了uiview B然后如果他点击缩小那么它将在iPad的先前位置任何人都可以指导我
据我所知,听起来您需要查看 UIViewAutoresizingMasks。这些定义了您的子视图将相对于它们的超级视图以何种方式缩放。例如
[mySubview setAutoresizingMask:UIViewAutoresizingMaskWidth];
当 mySubview 的超级视图的宽度发生变化时,mySubviews 的宽度将以相同的因子变化。