Transizioni animate tra viste

      Nessun commento su Transizioni animate tra viste

Oggi sono qui per parlarvi di quale semplice codice scrivere per creare delle transizioni fra View.

Rotazione:

Per Andare ad una vista:

[code lang=”obj-c”]
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight
forView:[self view]
cache:YES];
[[self view] addSubview:vostraView];
[UIView commitAnimations];
[/code]

Per Tornare da una vista:

[code lang=”obj-c”]
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight
forView:[self view]
cache:YES];
[vostraView removeFromSuperview];
[UIView commitAnimations];
[/code]

Effetto Libro:


Per Andare ad una vista:

[code lang=”obj-c”]
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp
forView:[self view]
cache:YES];
[[self view] addSubview:vostraView];
[UIView commitAnimations];
[/code]

Per Tornare da una vista:

[code lang=”obj-c”]
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown
forView:[self view]
cache:YES];
[vostraView removeFromSuperview];
[UIView commitAnimations];
[/code]

Spero di essevi stato utile e per maggiori informazioni o domande non esitate a scrivere un commento.