Hi all,
Im from argentina so my english is not good.
I want to have several different screens. Each screen will be different and have different options and methods.
Currently, i work with:
ViewController.m
Code:
[self presentModalViewController:SecondViewController animated:YES];
When i want to back:
SecondViewController.m
Code:
[self dismissModalViewControllerAnimated:YES];
It works OK but i dont like transitions between views.
I've seen some free apps with transitions differents, for example: Catcha Mouse, Dots Free, Unblock me free, tap tap ants.
How i do those transitions? any example?
Thanks