вы можете использовать этот код, вам просто нужно вызвать один из них, и они будут вызывать друг друга автоматически
- (void) animateZoomOut {
[UIView animateWithDuration:1
delay:0
options:UIViewAnimationOptionTransitionNone
animations:^ {
self.imgGift.transform = CGAffineTransformMakeScale(0.5, 0.5);
}completion:^(BOOL finished) {
[self animateGiftZoomIn];
}];
} - (void) animateZoomIn {
[UIView animateWithDuration:1
delay:0
options:UIViewAnimationOptionTransitionNone
animations:^ {
self.imgGift.transform = CGAffineTransformMakeScale(1, 1);
}completion:^(BOOL finished) {
[self animateGiftZoomOut];
}];
}