カスタムUIButtonをアニメーション化しようとしていますが、コードが機能しないようです。私はこれをViewDidLoadで使用しています:
[UIView animateWithDuration:40.0 delay:0 options:UIViewAnimationOptionRepeat animations:^{
duckButton.frame = CGRectMake(120, 80, 120, 180);
duckButton.frame = CGRectMake(200, 90, 120, 180);
} completion:^(BOOL finished) {
}];
私は何をすべきか?
[編集:答えはコメントにあります]