這裏是我試圖完成在這裏。我想要一個圖像從屏幕的頂部開始,然後轉到機箱,然後當它到達機箱時,它會再次返回。我能夠通過這樣做得到形象Objective C - 如果在CGRectmake上聲明?
- (void)viewDidLoad {
[super viewDidLoad];
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:4.0];
[image setFrame:CGRectMake(0, 0, 30, 1500)];
[UIView commitAnimations];
if ([image setFrame:CGPoint =(0, 0, 30, 1500)]) {
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:4.0];
[image setFrame:CGRectMake(0, 0, 30, 0)];
[UIView commitAnimations];
}
}
這if語句不工作,我不知道如何使這項工作。我很喜歡使用積分。
或者也許是一個while循環?有任何想法嗎? 非常感謝!
有一個好的一天