ref1view.hidden = NO;
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.25f];
[ref1view setAlpha:([ref1view alpha] == 1.0f) ? 0.0f : 1.0f];
[UIView commitAnimations];
¿Puede alguien darme un desglose de cómo funciona esto? Específicamente esta línea:Explique este código de Objective-C
[ref1view setAlpha:([ref1view alpha] == 1.0f) ? 0.0f : 1.0f];
Parece que esta función se animará la alfa entre 0-1 y volver de 1-0 y yo simplemente no entienden la sintaxis. Gracias!
Sí, op ternaria. – Kevin