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.
这样做在逻辑上是否有效:
child.frame = parent.bounds
假设我想添加新的 CALayer 作为视图的默认图层子层,并且我希望新的 CALayer 位于 (0,0) 并具有与其父级完全相同的大小。然后我会这样写:
self.customSublayer.frame = self.view.layer.bounds;
我认为这在任何情况下都应该没有问题,但我想要其他意见:)
这是执行此操作的标准方法,我认为您不需要任何其他选择