0

I have an iPad app which does have support for split screen multitasking. However there are some views which can display images and videos in full screen. On these screens the multitasking controls at the top of the screen are intrusive.

Is there any way to turn these off dynamically? Apple’s Photos app works the way I want. When showing a photo in full screen, the three dots fade away after a short time.

The answer here https://stackoverflow.com/a/70376095/1852207 turns off split screen support and disables the controls for all views. I want to hide on only some views.

Dale
  • 3,193
  • 24
  • 29
  • 1
    There is no public way, but this would make a good enhancement request submitted to Apple. – matt Mar 05 '22 at 01:59

1 Answers1

2

Yes, in your viewcontroller, simply include:

-(BOOL)prefersHomeIndicatorAutoHidden {
    return YES;
}
Craig T
  • 64
  • 3
  • Surprisingly this hides both the home indicator and the multitasking dots. Thank you – Dale Apr 12 '22 at 22:51