Reputation: 1040
I tried to implement the Multitasking feature Apple provided using AIR application, but I seem to miss something.
I did the following as apple recommended:
Still I do not see the vertical bar that divides the two app's for multitasking.
Let me know if you implemented this successfully in any third party apps?
Upvotes: 8
Views: 4189
Reputation: 474
Split screen wasn't working for me because even though I had a Storyboard, I wasn't using it. Make sure your Launch Screen File
is set, and your Launch Images Source
is blank.
Check off Portrait
, Upside Down
, Landscape Left
, and Landscape Right
under Deployment Info. Also make sure that Requires full screen
is not checked off.
Finally you should double check that your Info.plist is correct. UIRequiresFullScreen
should be NO. Supported interface orientations
and Supported interface orientations (iPad)
should have all 4 orientations.
Upvotes: 2
Reputation: 2186
All 3 listed steps are correct. Please also make sure Requires Full Screen
is set to NO
. It works perfectly for me.
Please let me know if you (or anyone else) still have trouble with Split View support.
Upvotes: 6
Reputation: 2372
What iPad are you using to test your app? Not all iPads support this behavior. This table shows which iPads support Slide Over, Picture in Picture and Split View:
Documentation from Apple for more information.
By the way how did you manage to use launch screen storyboard with Adobe AIR application?
Upvotes: 3