シンプルなCGAffineTransformMakeScale
パルス ラベルを使用して、2 番目のブロックでイーズ アウト オプション、遅延などを適用しようとするとエラーが発生しますか? これがないと、アニメーションがぎくしゃくしてしまい、元のサイズに戻ると何もなくなります。
[UIView animateWithDuration:1.0f delay:0 options: UIViewAnimationCurveEaseInOut|UIViewAnimationOptionAllowUserInteraction animations: ^{
[UIView setAnimationRepeatCount:10];
self.transform = CGAffineTransformMakeScale(1.1,1.1);
} completion:^(BOOL finished) {
[UIView animateWithDuration:1.0 animations:^{ // <<< "No known method for selector" error here if I add options
self.transform = CGAffineTransformMakeScale(1.0,1.0);
}];
}];