Pavel Kovalev
Pavel Kovalev

Reputation: 8126

iOS 11 iPad multitasking aka 'Side by Side' with Cordova

I'm creating an app using Cordova and I would love for my app on the iPad to use this cool feature called "Split View" aka "Apps Side by Side" or "multitasking" (see picture "My goal")

I'm using built-in apps to illustrate my idea:

My goal:

enter image description here

My best result so far (with build target iOS 11):

enter image description here

So I'm lost:

  1. Do I really need to drop support for iOS 9.x to do that?
  2. Any suggestions on how actually implement this? 🙂 Thank you!

Upvotes: 0

Views: 1089

Answers (1)

Robin Andersson
Robin Andersson

Reputation: 5380

This should work out of the box for any iOS 11 application.

Two reasons why it would not work:

  1. Your app has "Requires full screen" enabled under General -> Deployment info, this prevents split screen
  2. You miss that you should grab the "small grey bar" at the top of the "Slide Over" application and drag it to the right to get split screen, test to run Safari and Notes as split screen so you are sure that you do the interaction correctly

Upvotes: 2

Related Questions