0

我有个问题。当我使用下面的代码时,我可以第一次交换相同的 UIImageViews。第二次,他们回到原来的位置或相互重叠。

示例代码:

if (CGRectIntersectsRect(view1.frame, view2.frame)) {
   [UIView animateWithDuration:0.2 animations:^{
     CGRect view1Frame = view1.frame;
     view1.frame = view2.frame;
     view2.frame = view1Frame;
   }];
}

如何每次交换 UIImageViews 的位置?帮助将不胜感激!

4

1 回答 1

0

你把它变成一种方法了吗?

-(void) swapLocWith: (UIView *) view1 and: (UIView *) view2
{
   //your code sample here
}
...
-(void) someMethod
{
    //swap once
    [self swapLocWith: view1 and: view2]; 
    //swap back
    [self swapLocWith: view2 and: view1];
}
于 2013-07-09T21:07:21.233 回答