As we all know in iOS 5, we do not need to add separate lines of code for the TVOut function. They integrated this functionality as a built-in function.
What is my question: what if in my application there are some of my user presentations that I do not want to show as a TVOut presentation. It should only be displayed on the device, not on the projector board.
I checked the TVOut code that we use for iOS version <5.0, but there they capture the window image and transmit it. How to prevent skip screams for some custom small views.
Any suggestions or solutions are welcome.
Watch this video: http://www.youtube.com/watch?gl=US&v=GysMfb4_79A
How to achieve such a goal?
Edit : I used the ExternalDisplay code given by Apple. But I ran into one problem.
- This code works for a single view controller, where we add all our views to a new window.
- What if my application contains so many view controllers, and in some view controllers I have text elements for the user.
- To avoid displaying these textual representations in an external window in the form of TVOut, a view without this textView should be displayed.
Please suggest me.
source share