How to make paging off of vertical direction in WWDC2010 photoScroller.
- by user357383
In WWDC2010 sample code "photoScroller", in landscape mode,
I want to change image size to 480*751.
But there is vertical paging in this mode.
In this sample, zooming mode doesn't have vertical paging.
So I want to same as this.
Please teach me how to fix this sample code.
I changed this code as follows.
- (CGRect)frameForPagingScrollView
{
CGRect frame = CGRectMake(0, 0, 480, 751);
frame.origin.x -= PADDING;
frame.size.width += (2 * PADDING);
return frame;
}
Thank you