Mobile Safari allows you to switch pages by entering a sort of UIScrollView horizontal paging view with a page control at the bottom.

I am trying to replicate this particular behavior where a horizontally scrollable UIScrollView shows some of the next view's content.

The Apple provided example: PageControl shows how to use a UIScrollView for horizontal paging, but all views take up the whole screen width.

How do I get a UIScrollView to show some content of the next view like mobile Safari does?

link|improve this question

2  
Just a thought... try making the scroll view's bounds smaller than the screen, and fiddle around with getting the views to display properly. (and set scroll view's clipsToBounds to NO) – mjhoy Aug 3 '09 at 1:28
I wanted to have pages bigger the the uiscrollview's width (horizontal scroll). And mjhoy's thought actually helped me out! – Sasho Jan 18 '11 at 10:52
feedback

4 Answers

up vote 94 down vote accepted

A UIScrollView with paging enabled will stop at multiples of its frame width (or height). So the first step is to figure out how wide you want your pages to be. Make that the width of the UIScrollView. Then, set your subview's sizes however big you need them to be, and set their centers based on multiples of the UIScrollView's width.

Then, since you want to see the other pages, of course, set clipsToBounds to NO as mhjoy stated. The trick part now is getting it to scroll when the user starts the drag outside the range of the UIScrollView's frame. My solution (when I had to do this very recently) was as follows:

Create a UIView subclass (i.e. ClipView) that will contain the UIScrollView and it's subviews. Essentially, it should have the frame of what you would assume the UIScrollView would have under normal circumstances. Place the UIScrollView in the center of the ClipView. Make sure the ClipView's clipsToBounds is set to YES if its width is less than that of its parent view. Also, the ClipView needs a reference to the UIScrollView.

The final step is to override - (UIView *)hitTest:withEvent: inside the ClipView.

- (UIView *) hitTest:(CGPoint) point withEvent:(UIEvent *)event {
  if ([self pointInside:point withEvent:event]) {
    return scrollView;
  }
  return nil;
}

This basically expands the touch area of the UIScrollView to the frame of its parent's view, exactly what you need.

Another option would be to subclass UIScrollView and override its - (BOOL)pointInside:(CGPoint) point withEvent:(UIEvent *) event method, however you will still need a container view to do the clipping, and it may be difficult to determine when to return YES based only on the UIScrollView's frame.

NOTE: You should also take a look at Juri Pakaste's hitTest:withEvent: modification if you are having issues with subview user interaction.

link|improve this answer
Great answer! It worked perfectly. Thank you so much. – Jonathan Sterling Aug 12 '09 at 18:09
Omg I have been trying to do this for days. Thank you so much! – respectTheCode Apr 4 '10 at 21:31
Great answer, I should have thought of this! – DevDevDev Apr 22 '10 at 23:25
1  
Thanks Ed. I went with a UIScrollView subclass for lazy loading of views (in layoutSubviews), and used a clippingRect to do the pointInside:withEvent: testing. Works really well, and no additional container view required. – ohhorob Jun 1 '10 at 19:41
So simple! Well done! – csch Mar 29 '11 at 12:14
show 4 more comments
feedback

The ClipView solution above worked for me, but I had to do a different -[UIView hitTest:withEvent:] implementation. Ed Marty's version didn't get user interaction working with vertical scrollviews I have inside the horizontal one.

The following version worked for me:

-(UIView*)hitTest:(CGPoint)point withEvent:(UIEvent*)event
{
    UIView* child = nil;
    if ((child = [super hitTest:point withEvent:event]) == self)
    	return self.scrollView;		
    return child;
}
link|improve this answer
This is a good modification-- thanks. – Michael Grinich Jul 4 '10 at 4:39
This also helps get buttons and other subviews with user interaction working. :) thanks – Thomas Clayson Mar 28 '11 at 9:29
Thank you for this code, how can I use this modification to get events from subviews (buttons) not contained in the scrollview boundaries? It works if a button for example is within the boundaries of the central scrollview but not outside. – DreamOfMirrors May 17 '11 at 9:48
2  
This really helped. It should be included as a modification of the selected answer. – Pacu Jun 22 '11 at 22:50
Completely agree with @Pacu – A Salcedo Jun 27 '11 at 21:04
show 1 more comment
feedback

I have implemented HGPageScrollView, a page scroller much like mobile safari. It is posted on GitHub: https://github.com/100grams/HGPageScrollView

link|improve this answer
feedback

I have another potentially useful modification for the ClipView hitTest implementation. I didn't like having to provide a UIScrollView reference to the ClipView. My implementation below allows you to re-use the ClipView class to expand the hit-test area of anything, and not have to supply it with a reference.

- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
{
    if (([self pointInside:point withEvent:event]) && (self.subviews.count >= 1))
    {
        // An extended-hit view should only have one sub-view, or make sure the
        // first subview is the one you want to expand the hit test for.
        return [self.subviews objectAtIndex:0];
    }

    return nil;
}
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.