I want to make a really simple iphone application: one screen with one button ... when you click the button, a new screen appears. It. No animations, nothing
I tried endlessly to make an example NavBar project ... and it works, but only if I use the UINavigationController with a table that I can use, etc. I also tried all skeletal projects in Xcode.
I thought I finished when I did this:
[[self navigationController] presentModalViewController:myViewController animated:YES];
But I could not do this without the UINavigationController. I just want a simple example.
Many thanks!
source
share