Ключевое слово в цикле. Я думаю, что у меня будет две функции для анимации, такие как пульс. Это лучший способ сделать это петлей?
-(void)animationPart1 {
//Do first half of animation here, pulse in, the animation is 0.3 seconds long
[NSTimer scheduledTimerWithTimeInterval:0.3 target:self selector:@selector(animationPart2) userInfo:nil repeats:NO];
}
-(void)animationPart2 {
//Do second half of animation here, pulse out, the animation is 0.3 seconds long
[NSTimer scheduledTimerWithTimeInterval:0.3 target:self selector:@selector(animationPart1) userInfo:nil repeats:NO];
}
Я новичок в анимации, так что спасибо за вашу помощь!