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.
我在 UIScrollView 中堆叠了 4 个 UIView。
当任何一个 UIView 被点击时,我希望该特定视图展开并显示更多内容,这意味着所选视图下方的同级视图必须将自己向下推。
我本可以使用 UITableView,但是当您动态更改行高时会发生各种奇怪的事情,这就是我选择这个后备的原因。
我可以使用 autoresizingmask 来做到这一点吗?
干杯
你的问题答案不是那么简单,你需要使用不同的逻辑手段你知道点击后每个视图有多少宽度和高度,然后你可以将视图的引用传递给 Scrollview 的 setContentSize。这里是一些解决的教程我在 Scrollview 中放置一些运行时数据时遇到的问题。
关联
希望对您有所帮助。