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.
我是一名学习 iOS 的 Android 开发人员,我正在尝试在我的应用程序的详细视图中添加“部分”,我想要实现类似下图的效果:
在 Android 中,我可能会定义三个布局,并在每个布局中放置我需要的控件。我找不到类似布局的东西,这些部分将如何在 iOS 中实现?
提前致谢!
您可以使用三个不同UIView的 s 并将所有这些放在一个UIView占据整个屏幕的位置。
UIView
您可以将每个部分中所需的所有 UI 元素(文本、按钮等)放在您创建的三个UIView部分之一中,就像 Android 中的布局一样。