在官方文档中存着么一段对frame和Transform的解释
Changes to this property can be animated. However, if the
transform
property contains a non-identity transform, the value of theframe
property is undefined and should not be modified. In that case, reposition the view using thecenter
property and adjust the size using the
从这段话里面我们可以知道center、bounds和transform都会对frame直接影响。
我个人理解为frame是包含的center、bounds和transform的集合属性。
因此当view需要设置Transform时, 应该避免使用frame。
在实际使用时发现,如果只对frame.size Transform设置一次,并不会影响结果。
但如果多次设置frame.size Transform这会发生形变