我希望在不更改UIImageView位置的情况下获得UIImageView大小。这是我到目前为止所得到的:
Person_1.frame = CGRect(x: 0, y: 0, width: 200, height: 200)
我不希望x和y为0.我希望UIImageView在同一个地方但更大。请帮忙!
答案 0 :(得分:0)
如果你必须通过改变框架来做,那么它看起来像:
Person_1.frame = CGRect(x: Person_1.frame.origin.x, y: Person_1.frame.origin.y, width: 200, height: 200)
您是否有理由不通过约束/ AutoLayout进行此操作?