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.
我有一个复杂的视图,它由一个基础图像和其他图像和 2D 路径组成。
我想知道如果通过为每个元素创建不同的 UIView 并将它们添加为复杂视图的子元素来组装复杂视图,或者我是否应该为每个元素创建不同的 CALayer 并将它们添加为复杂视图的子元素,将会有什么不同视图的图层属性。
谢谢
tat0
你应该详细说明你想要做什么,但我的经验法则是在我试图增强用户界面(用户交互等)的情况下使用 UIViews,当我想要动画时使用图层东西或使用精灵。听起来你正在做后者,所以我建议在你的主视图中添加新图层而不是添加子视图。