How to load a UIView from a tap?
- by balexandre
Hi,
I'm new to iPhone Development and I did some examples and seen code and code and more code but I still can't get the
when the user taps here show this view using this animation, and go back after (user taps a back button)
I did some Tab Bar examples, Utility examples, etc but when I start a project from scratch the code never does what I want :-/
every time I create a View (xib) I also create the controller (h and m files), as all examples are like this, and I have no idea if I can only create 4 Views and just have one controller :-(
when a user taps a UITableCell how can I load a new view using an animation? and how can I go back to the UITableCell the user was?
kind'a (in C#)
myNewForm f = new myNewForm();
f.show();
...
this.Close();
If someone can share some knowledge or a tutorial or a screencast, I will greatly appreciate
Thank you!