I'm just starting out with iOS development and have what I think is a pretty simple question. My storyboard currently has just two screens. I need to be able to segue back and forth between these two. I have a button on each screen that references the other (i.g. screen 1 has a button that says 'screen 2' and vice versa).
I've defined segues from each button to the opposite screen. To do this, I control-dragged from the button to the opposite screen and assigned a style of 'Modal'. When I run the app and click on either of these buttons, the segue to the opposite screen occurs, but the background color of the screen is all wrong. For example, my app launches on screen 1 and it has a gray background and all looks great. Then I click on 'screen 2' and screen 2 comes up, but with a black background (it should be gray). Then I click on 'screen 1' and screen 1 comes back but this time with a red background.
Clearly I'm not understanding how to effect these segues correctly. Can somebody please tell me what I have done wrong?
Thank you!