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