Chapter 7. Scroll Views

A scroll view (UIScrollView) is a view whose content is larger than its bounds. To reveal a desired area, the user can scroll the content by dragging, or you can reposition the content in code. The scroll view functions as a limited window on a larger world of content.

A scroll view isn’t magic; it takes advantage of ordinary UIView features (Chapter 1). The content is simply the scroll view’s subviews. When the scroll view scrolls, what’s really changing is the scroll view’s own bounds origin; the subviews are positioned with respect to the bounds origin, so they move with it. The scroll view’s clipsToBounds is true, so any content positioned within the scroll view is visible and any content positioned outside it is not.

A scroll view has the following specialized abilities:

  • It knows how to shift its bounds origin in response to the user’s gestures.

  • It provides scroll indicators whose size and position give the user a clue as to the content’s size and position.

  • It can enforce paging, whereby the user can scroll only by a fixed amount.

  • It supports zooming, so that the user can resize the content with a pinch gesture.

  • It provides delegate methods so that your code knows how the user is scrolling and zooming.

Content Size

How far should a scroll view scroll? Clearly, that depends on how much content it has. The scroll view already knows how far it should be allowed to slide its subviews downward and rightward: the limit is reached when the scroll ...

Get Programming iOS 14 now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.