我在我的應用程序中有一個問題,我有一個移動圖像,它工作正常。 但是我的圖像也在移動一個按鈕,當圖像位於按鈕之前時,我無法點擊。我如何確保圖像在我的視圖背景上移動,以便我仍然可以按下按鈕。如何在視圖的背景中移動圖像?
這是運動圖像
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
[[self navigationController] setNavigationBarHidden:YES animated:YES];
[self loadImage];
image = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"cow.png"]];
image.frame =self.view.bounds;
[[self view] addSubview:image];
[NSTimer scheduledTimerWithTimeInterval: 3
target: self
selector:@selector(moveImage:)
userInfo: nil repeats:YES];
}
-(void) moveImage: (NSTimer*)timer {
CGFloat x = (CGFloat) (arc4random() % (int) self.view.bounds.size.width);
CGFloat y = (CGFloat) (arc4random() % (int) self.view.bounds.size.height);
CGPoint pointOne=CGPointMake(x,y);
image.center=pointOne;
}
}
在我建議改寫你的問題,提高其語法首先,因爲它是目前站立,很難理解。 – 2012-12-19 16:26:46
改變縮進設置可能也是一個好主意。 – CodaFi
我真的不明白這個問題嗎?請重新說明。 – RyanG