0

I'm implementing an app that needs a camera preview using AVCaptureSession. Unfortunately iOS9 will interrupt the AVCaptureSession as soon as Split View or Slide Over is on. The system allows to detect such an interruption (see: https://stackoverflow.com/a/33086527/1896336).

The good thing is that we can warn the user to go Full Screen but I was actually wondering if we could programmatically set the app to go Full Screen when the user taps a "yes take me back to full screen" button ?

Community
  • 1
  • 1
Joss
  • 903
  • 10
  • 17

1 Answers1

-1

No. If you don't like this behavior, don't use iPad Multitasking (opt out by insisting on full screen in the Info.plist).

matt
  • 515,959
  • 87
  • 875
  • 1,141
  • This is well covered in the relevant WWDC 2015 video from Apple. – matt Oct 13 '15 at 16:21
  • Ok matt thanks for the information. It's kind of sad tough as Apple's built-in Contacts app allows to take a picture in split view mode through UIImagePickerController. Well... – Joss Oct 13 '15 at 16:34