I've been trying to enable multitasking on my Ionic / Cordova app on iOS without success.
I've followed the steps in [CB-9161] Support iPad multitasking in iOS 9:
The three rules are:
- Build your apps with the iOS 9 SDK
- Support all orientations
- Use Launch Storyboards
Fix for (1) is:
- Use Xcode 7 (Cordova always uses the current SDK)
Fix for (2) is:
- Click your Project icon in the Project Navigator
- Click on your Target
- Select the "General" tab
- Go to the "Deployment Info" section
- Select the "iPad" button segment
- For "Device Orientation", select all four checkboxes (Portrait, Upside Down, Landscape Left, Landscape Right)
Fix for (3) is:
- Add a new File: Launch Screen --> "Launch Screen.storyboard"
- Click your Project icon in the Project Navigator
- Click on your Target
- Select the "General" tab
- Go to the "App Icons and Launch Images" section
- Select "Launch Screen.storyboard" from the "Launch Screen File" dropdown
I can see the new launch screen appearing before my app opens, but then I still can't split the view.
For your information, I'm building on a Mac with Xcode 8.2.1.
All Device Orientation
boxes are ticked, and the Requires full screen
is blank.
Any idea or direction to give me?