ios - Animar UIButton con animaciónImágenes cambia el estado del botón se desvanece después de completar la animación
objective-c animation (1)
UIButton
la solución, de hecho hay una propiedad asociada con UIButton
llamada Disabled Adjust Image
, simplemente desmarco y funcionó.
Estoy animando UIButton
con animationImages
y su animación con éxito, pero después de completar la animación, el UIButton
desvanece automáticamente. ¿Cómo puedo evitar el fundido?
sender.imageView.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:[NSString stringWithFormat:@"main_bird_animation_01%@",ipadVar]],
[UIImage imageNamed:[NSString stringWithFormat:@"main_bird_animation_02%@",ipadVar]],
[UIImage imageNamed:[NSString stringWithFormat:@"main_bird_animation_03%@",ipadVar]],
nil];
sender.imageView.animationDuration = 1.f;
sender.imageView.animationRepeatCount = 4.f;
[sender.imageView startAnimating];