Best way to switch between UISplitViewController and other view controllers?

I seriously didn’t believe that this concept of having some UIViewController to show before UISplitViewController (login form for example) turns out to be so complicated, until I had to create that kind of view hiearchy. My example is based on iOS 8 and XCode 6.0 (Swift), so I’m not sure if this problem existed before … Read more

iPhone reachability checking

From your screen shot, it seems like you do not have Reachability added to your project. You must download Reachability from Apple: https://developer.apple.com/library/content/samplecode/Reachability/Introduction/Intro.html And add both .h and .m files to your project. Update: You noted you have Reachability. But looking at the most recent version, I can see why you have the errors you … Read more