I had a similar problem, some of my IBOutlets (shortcuts) showed up on the storyboard, I didn't have AutoLayout warnings / errors, and everything seemed fine, but some of the points didn't show up on the Simulator. Everything became even more complicated when I noticed that SOME EXHIBITIONS EXECUTE .. strange ..
I ended up transferring the call to show the view controller in a GCD method like this (quick code):
dispatch_async(dispatch_get_main_queue()) { [unowned self] in let vc = self.pages[0] self.setViewControllers([vc], direction: .Forward, animated: false, completion: nil) }
And that solved it.
source share