0

When the iPhone 6+ came out UISplitViewController was still restricted to iPad devices, so I rolled my own simplified split view controller for use in iPhone 6+. Consulting the current documentation it seems that the restriction has gone and that UISplitViewController is now available on iPhone, so naturally I am considering to switch to UISplitViewController.

I haven't actively tracked the history of UISplitViewController, though, and I haven't been able to find out with a few internet searches in which iOS version the restriction went away. This information is important to me because my app should still support devices with older iOS versions installed. Currently the app's deployment target is set to iOS 9.

So what is the minimum deployment target I have to set in my app if I want to use UISplitViewController on iPhone? Is iOS 9 sufficient?

herzbube
  • 13,158
  • 9
  • 45
  • 87

1 Answers1

1

The UISplitViewController is available on iPhone since iOS8, so iOS9 is sufficient.

D. Mika
  • 2,577
  • 1
  • 13
  • 29
  • Do you have a source for this? Maybe I can learn how to lookup such information myself in the future. – herzbube Jan 27 '21 at 20:49
  • 1
    No "official" source, sorry. But this is a good source imho: https://www.raywenderlich.com/4613809-uisplitviewcontroller-tutorial-getting-started. I found another site that states the same, so I'm pretty sure it's correct ;-) – D. Mika Jan 28 '21 at 08:39