现在的情景如下
view1 是父 view2 是子view
view2是通过约束来确定在父view中的位置的
我现在对父view进行了CGAffineTransformMakeRotation, 而且在animation 修改了父view的frame, 我写了个demo测试了一下, 当对父view进行上面操作时, 子view的约束,不会随着适应, 是我哪里疏忽了, 还是子view的约束就不会自适应?
1
66450146 2015-04-14 22:56:45 +08:00
修改了 transform 之后就不要再动 frame 了……这段是 frame 的文档里面写的:
if the transform property contains a non-identity transform, the value of the frame property is undefined and should not be modified. |
3
Creolophus 2015-04-15 15:55:48 +08:00
铺满屏幕用CGAffineTransformScale试试
|