On iOS 5 with an iPad 2 or iPhone 4S, users can enable screen mirroring with their Apple TV and AirPlay. How can I prevent my app from being mirrored in this way? Is there any way to detect that this mirroring is taking place so I can prevent my content from being mirrored?

The reason for doing this is because I have content I'm not legally allowed to display on a television screen.

link|improve this question

2  
@CarlVeazey In this case with my answer below I would recommend displaying a message that states the reason mirroring is "not working". – Chris Wagner Dec 7 '11 at 22:51
feedback

1 Answer

up vote 3 down vote accepted

This is a really really bad idea and I hate it as you are inhibiting your users. With that said, AirPlay mirroring works the same way as connecting the VGA/HDMI adapter, when you connect an adapter you have the ability to display whatever you want on the "second monitor". If you want to "block" mirroring you could set the external display's window to a blank/solid black view.

Most iOS applications create and use only one window during their lifetime. This window spans the entire main screen of the device and is loaded from the application’s main nib file (or created programmatically) early in the life of the application. However, if an application supports the use of an external display for video out, it can create an additional window to display content on that external display. All other windows are typically created by the system, and are usually created in response to specific events, such as an incoming phone call.

Check out the View Programming Guide for iOS, specifically the Windows section and Displaying Content on an External Display

link|improve this answer
Thanks Chris. I've been able to accomplish my goal with your advice. – Carl Veazey Dec 7 '11 at 23:51
1  
@Chris not necessarily a "really really bad idea". I'm developing an app right now with a good reason for disabling mirroring. – DuckMaestro Mar 9 at 23:37
There are always business reasons that make sense, it just sucks from a user's standpoint when functionality is crippled. – Chris Wagner Mar 9 at 23:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.