There is almost no information out there about this, so here is my problem:
I'm working on a 2 player 'sit across from eachother' ipad game and the player who is on the opposite side has a hard time tapping buttons... because it appears that Apple auto-shifts the touch based on the device orientation (which is great for regular use or the main player). Is there any way to reset it or tell the ipad to not do that? (Btw iPhone does this too)
This is all I have found: Given this apparent inconsistency, I've decided to just cheat it by opening up the moving parts' 'bounds' so that there is an area for the user to hit below the part's area. On the whole, users seem to hit below an object rather than above it - so don't notice the shifting caused by iOS as much.
So if there is no easy way to prevent the offsetting, is the only solution to shift each uiview's (or subclass's) bounds for the opposite player? Or is that even correct?
Any answers appreciated.