I’m developing an app/game that contains few UIViews:
- An user/pass form
- A title menu
- A configuration menu
- 1 MapView that will be the main view
- 4 UIViews that i will show dinamically and with animation using the “animateWithDuration” function
- 2 alert UIViews
I’ve never worked with Storyboards so I would like to know what is the best solution:
- Use Storyboards to keep control of the navigation flow (it’s posible to use animateWithDuration in this case?)
- Show/hide the UIViews programatically as I was doing until now
- To use a combination of both (if it’s possible)
- Other
for iOS 5, i agree with Kaelin’s answer: better organization all in one place, and i have projects in which there are items that don’t fit within the storyboards that can still be added programmatically by loading .xib files later.
however, for any iOS 4.x or earlier support that you are required to do, storyboard won’t help you. it is not supported in iOS 4.x or earlier.