Finally got my hands on an iPad and just noticed now that my UIScrollvew is corrupted in one of my apps when you scroll left or right. It works fine on iPhone 3.1.3. But it broken on the iPad. Need to fix this fast since it's on the store.
It has something to do with Paging and Bounce Scroll being checked off in IB. I disabled them and it's OK now, but I'm left without paging.
Finally got my hands on an iPad and just noticed now that my UIScrollvew is corrupted in one of my apps when you scroll left or right. It works fine on iPhone 3.1.3. But it broken on the iPad. Need to fix this fast since it's on the store.
It has something to do with Paging and Bounce Scroll being checked off in IB. I disabled them and it's OK now, but I'm left without paging.
Anyone found a way to fix it?
Wow, haven't been able to find an answer to this. I wonder if it is a bug?
I think the same or a similar bug is described here: Bynomial Code UIScrollView bug . Ran into the same problem when tried to custom animate UIScrollView after didEndDragging event.
SDK 3.1.3 was fine - this appeared starting from sdk 3.2
I was having a problem with my scroll view in iPad as well.
Often the pages were being set half-way through.
I am also customizing some of the movement inside the scroll view.
I was setting the contentOffset at launch.
This caused scrollViewDidScroll: to be called.
though the frame said it was 960 wide, the standardOffset value below was being set to 480, i removed my superstitious casting of these values and the value went back to 960,
the processing that was being performed depending upon offset i think was all of my issues,