我想知道在Xcode中如何互換兩個UIImageViews
的位置。交換位置UIViews Xcode
例子:
if (CGRectIntersectsRect(view1.frame, view2.frame)) {
[UIView animateWithDuration:0.2 animations:^{
CGRect view1Frame = view1.frame;
view1.frame = view2.frame;
view2.frame = view1Frame;
}];
}
不幸的是,這並不工作,因爲變量每次想起老位置。 你能幫我嗎?
我第一次嘗試使用我的代碼,但第二次沒有使用 – Steven
而且在變量之前的*是我輸入的錯誤。 – Steven