iPhone 调整子视图和原点的大小
如果我在 uiview 中缩放子视图,这些子视图是否尊重它们最初绘制的 x,y?即,如果我有一个包含 2 个子视图的视图,一个为 50,一个为 60,并且我将父视图的大小增加了 3,那么子视图现在会以 150 绘制,另一个以 180 绘制吗?
If I scale subviews in a uiview, do those subviews respect the x,y they were originally drawn at? i.e if i have a view with 2 subviews , one at 50 and one at 60 and i increase the size of parent view by 3, will the subviews now draw at 150 and the other one at 180?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
父级不会自动缩放其子级子视图的大小。
但是,当您想要一个带有子视图的缩放功能并与父视图一起缩放时,这是很有可能的。
但如果没有一个正确的例子来说明你到底想要什么,就不可能给出正确的答案
A parent will not automaticly scale the size of its childrens subviews.
But when u want a zoom function with subviews on them that will scale with the parent it is quite possible to do so.
But without a proper example of what you want exactly it's impossible to give a proper answer