the coordinates returned by uitouch's locationInView are ignoring device orientation -

I have a uiview that properly rotates, but locationInview always returns as if it is portrait...the view overrides layerClass and provides CAEAGLLayer but it is still a uiview

Is there something special I need to do? Or is it just standard practice to detect the orientation and manually adjust?

Thanks for any help/advice

link|improve this question

0% accept rate
feedback

2 Answers

Make sure you are using a ViewController for your host view. That should get the locationInView method to return orientation specific coordinates.

link|improve this answer
feedback

The view from which you are trying to get the CGPoint value is actually not getting resized, even though it might be getting oriented. Check its frame values before and after resize by:

NSLog(@"Rect Of View = %@",[[NSRectValue valueWithCGRect:yourView.frame] debugDescription]);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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