我正在开发一个应用程序。因为我正在使用一个 UIImageView 并且我使用下面的代码每 0.5 秒更改一次 UIImageView 的位置。
[NSTimer scheduledTimerWithTimeInterval:0.5
target: self
selector:@selector(moveImage)
userInfo: nil repeats:YES];
-(void) moveImage
{
//[image1 setCenter: CGPointMake(634, 126)];
CGFloat x = (CGFloat) (arc4random() % (int) self.view.bounds.size.width);
CGFloat y = (CGFloat) (arc4random() % (int) self.view.bounds.size.height);
CGPoint squarePostion = CGPointMake(x, y);
img.center=squarePostion;
}
现在我可以触摸屏幕了。我需要找出的是我的触摸位置和图像视图位置是否正确。