如何从下到上循环层次结构(用于自动布局管理器)?
我有一个 UIObjects 层次结构,它具有自动布局管理器,为了计算它们的首选大小,我需要循环从最底层项目到根项目的所有层次结构。
它们目前的存储方式如下:
root.children[{children: [{...}, {...}, {...}]}, {...}, {...}]
{.. .} = UIObject
(语言=javascript)
谢谢
I have a hierarchy of UIObjects that has automatic layout managers and in order to calculate their preferred size I need to loop all the hierarchy from the most bottom item to the root item.
They currently are stored like this:
root.children[{children: [{...}, {...}, {...}]}, {...}, {...}]
{...} = UIObject
(language=javascript)
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的意思是你想计算父容器的结果大小?
Do you mean you want to calculate result size of parent container?