我有一个 UIImageView 被一个计时器移动到视图的边缘,但它继续进行,我不知道如何在 UIImageView 碰到他的边缘时立即停止它!请帮忙?这是我迄今为止在我的方法中尝试过的!
代码:
-(void)moveBack {
CGPoint manCenter = man.center;
if (manCenter.x > 480) {
manCenter.x = 480;
}
man.center = CGPointMake(man.center.x +5, man.center.y);
[self ifCollided];
}