My App with a portrait screen is done
It uses storyboards.
It needs to support landscape.
Lanscape layout is completely different (Controls moving to different parts of the screen) than Portrait but uses the same set of controls
What are the best practices -
Start with Portrait and copy the storyboard to Landscape This forces me to maintain two storyboards all the time.
-OR-
Keep using constraints and programmatically change the constraints to move the controls at run time.
-OR- Something else