3

I try to enable my existing universal iOS app for multitasking (split view), but it's not listed there, although I fulfill all requirements, I guess:

  • it's universal
  • iPhone and iPad app support all orientations (is this necessary for the iPhone app as well?)
  • built with the latest Xcode, base SDK version iOS 9
  • LaunchScreen.storyboard is used

What else could I be missing?

swalkner
  • 16,679
  • 31
  • 123
  • 210

2 Answers2

4

solved the problem; it was the Requires full screen checkbox: enter image description here

After ticking it off, it worked as expected.

swalkner
  • 16,679
  • 31
  • 123
  • 210
0

For me, I had to delete UISupportedInterfaceOrientations~ipad and associated array values from my info plist file - but leave the UISupportedInterfaceOrientations one.

Mike S
  • 4,092
  • 5
  • 35
  • 68