在iOS上,如果我们改变查看 s frame
,我们就会改变其 bunds
,如果我们改变其 bunds
,我们就会改变其 frame
。
但是我们可以改变内部协调系统,
CGRect b = v.bounds; // v is the UIView object
b.origin.x = 10000;
b.origin.y = 10000;
v.bounds = b;
现在, 视图的左上角是 < code> (1000, 10000, 10000) code> 的坐标 。 仅通过更改 < code > frame code > 和 < code> center code >, 但不使用 < code > bunders code >, 是否也可以做到这一点?