Quick Question,
Does anyone know if the screen stacking I'm encountering on the Storyboard user interface is going to show up when I run my app? It happens whether I run a normal perform segue or push/initialize controller functions. I feel maybe this is just a visual way Xcode shows that your screens are segueing but not sure. The current method I'm using is...
@IBAction func forumsSegue(_ sender: Any) {
let theScreen = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "ChannelViewCon") as? ChannelViewCon
self.present(theScreen!, animated: true, completion: nil)
print("Navigation controller unavailable! Use present method.")
What it turns out with in the simulator is a segue to another screen that has this layout...
zoomed view of the stacking screens
Maybe this will go away when I finally import to an actual device for testing but does anyone know for certain because it happens with any screen switch I to? Thanks.