I have a simple iphone app that’s based on the CrashLanding sample app. So basically you tap the title screen and do some stuff… all on the same ‘view’. I want to add an ‘options’ screen/page/view whatever with a few UISwitches. What’s the easiest way to do this?
Cheers!
Dunno if this will help I’m a bit new to objective-c and iPhone api.
Maybe u can do something like this: Use the interface builder: just type ‘Interface Builder’ on the Spotlight (top right corner) to generate like ‘myOptions.xib’
And then just implement it: like
You can take a look at the QuartzDemo under the iPhone API to see how to load the interface list of objects. In the previous view controller you just need to add it to the object list. It will look something like this:
Hope it helps