Have an app here where I have a UIScrollView being displayed on the TV using AirPlay, and I'm taking its UIPanGestureRecognizer (scroll gesture) and adding it to my own custom view on the iPad. Works wonderfully, and I can scroll the UIScrollView on the TV by touching my local view.
However, I have problems once I rotate the iPad. Since the view on the TV isn't rotating, the gesture doesn't rotate either. Meaning that panning up on my local view now becomes left (or right) on the UIScrollView on the TV.
So far I've tried removing the gesture before the rotation, and then adding it back in afterwards to see if that would help, but it's still stuck on being sideways when in landscape mode. I also don't want to create my own pan gesture as it wouldn't be as smooth as the one built into the scrollview.
Anybody here have any suggestions as to how to make this work?