17
Annullare un'animazione UIView?
È possibile annullare UIViewun'animazione mentre è in corso? O dovrei scendere al livello CA? cioè ho fatto qualcosa del genere (magari impostando anche un'azione di fine animazione): [UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:duration]; [UIView setAnimationCurve: UIViewAnimationCurveLinear]; // other animation properties // set view properties [UIView commitAnimations]; Ma prima che l'animazione si …