Moving view after rotating
Hi there!
I'm new in iPhone development and i read all apple documentation.
Currently I'm developing iPad application with UIScrollView. When is iPad in portrait position, this scrollview must be on the bottom of screen, in landscape position i want to move it in right top corner. So in willRotateToInterfaceOrientation method i change x and y coordinates of scrollView and scrollView is moved in right position. But the problem is that touches events doesn't work in whole scrollview after moving. They are working only in left part of screen where is x <=768 (width of iPad screen in portrait mode). ScrollView have right size and contentSize setup.
I also move changing coordinates to method didRotateFromInterfaceOrientation, but it doesn't help.
Looks like an apples issue.
|