I am using Camera API and QRCode API in my Project, Can i implement multitasking(splitvIew) in my Project

150 views Asked by At

I am using Camera API and QRCode API in my Project, Can i implement multitasking(splitvIew, SlideOver) in my Project. I think that when we use camera API, want to use fullscreen. My project also have some other functionalities. is it possible to use Fullscreen only when use Camera API?

1

There are 1 answers

3
Nilesh Patel On BEST ANSWER

If you app is camera-centric app OR Gaming related, Then Apple suggest to opt out above feature.

Apple Documentation Says

Consider opting out only if your app falls into one of these narrow categories:

Camera-centric apps, where using the entire screen for preview and capturing a moment quickly is your primary feature.

Full-device apps,such as games that use iPad sensors as part of their core gameplay Otherwise, Apple, and your customers, expect you to adopt Slide Over and Split View.

To opt out of being eligible to participate in Slide Over and Split View, add the UIRequiresFullScreen key to your Xcode project’s Info.plist file and apply the Boolean value YES.

Let me know if you need more clarification for the same.