如何在ios中水平地将四个图像从一个位置移动到另一个位置

时间:2015-07-14 09:29:14

标签: ios objective-c iphone

我有一个查询。我正在尝试开发像iOS中的Abacus这样的游戏。我想在iOS中水平地将四个图像从一个位置移动到另一个位置。任何人都可以帮助我,请问我在iOS中如何做到这一点。我引用此链接How to move Object from one place to other using Animation in iphone applications 但使用这个我只能水平移动一个图像我想移动四个图像如何做到这一点。

以下是我尝试的内容:

-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
    UITouch * touch = [touches anyObject]; 
    CGPoint loc = [touch locationInView:self.view]; 
    [UIView beginAnimations:nil context:NULL]; 
    [UIView setAnimationDuration:2.0]; 
    CGRect rect = CGRectMake(loc.x, _img.frame.origin.y, _img.frame.size.height, _img.frame.size.width); 
    [_img setFrame:rect]; 
    [UIView commitAnimations]; 
}

1 个答案:

答案 0 :(得分:0)

将所有图像放在视图中(比如容器视图),然后移动容器视图