Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I looked up the official documents for airplay, found the airplay can only support audio and video. But beside that, the native photos app can airplay photos. So is there any methods to airplay photos? BTW, I know the "mirroring" mode can do this job: I can detect 2 screens in my code and present a different screen to the iOS device's in this mode. However, the "mirroring" mode only exists in iPad 2, new iPad and iPhone 4S...

share|improve this question

2 Answers

up vote 2 down vote accepted

I found solution here http://livevision.us/wordpress/2011/02/16/airplay-without-private-api/ and How to find the IP-address of the active AirPlay device?

I could send some UIImage to apple TV.

but I don't know if apple allows using these Unoffical Airplay protocol.

share|improve this answer
Thank you! I found another unofficial document for airplay protocol http://nto.github.com/AirPlay.html serval days ago, both of them are protocol level, but since they are undocumented, so I am not sure whether apple will reject the app if I use it... – Hang Jul 19 '12 at 1:01
What happened to your app? Got an approval? – Mayank May 10 at 20:16

It is documented on Apple's site. When the user enables airplay mirroring, your app will find two UIScreen:s. It's quite simple.

Here's a sample app http://developer.apple.com/library/ios/samplecode/GLAirplay/Introduction/Intro.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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