Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Carter Randall
3,311 PointsSimulator not displaying content? Adding Sign Up and Log In Screens.
The performSegueWithIdentifier method is working properly verified with an NSLog and all segue's work as well. However when run in the simulator none of the text fields or buttons appear.
-Here it is run in the simulator:https://drive.google.com/file/d/0B4kyH9WQX7M_WUxzdHEtQ2RoeFk/view
-StoryBoard:https://drive.google.com/file/d/0B4kyH9WQX7M_N1UwOW10TUxRWDQ/view
-Code:https://drive.google.com/file/d/0B4kyH9WQX7M_VlNvNnJLM1BBdUU/view
Any help is appreciated!
Carter Randall
3,311 PointsCarter Randall
3,311 PointsFixed it! Turns out it was a problem with the size of the View controllers. Had it set to W:Regular and H:Regular which is for iPad. Solution is to change it to W:Compact H:Regular (at the bottom of view controller). This suits all iPhone portrait displays. Unfortunately you will have to re-map your tables and segues after the change as adjusting the size scraps and controls within view controllers.