This document discusses CATiledLayer, which allows for tiled scrolling of large images in iOS. CATiledLayer is a subclass of CALayer that handles tiling and rendering of its content. It works by requesting tiles from its delegate using the drawRect method as the user scrolls. Support for retina displays requires accounting for the layer's contentsScale and adjusting tile sizes and drawing rectangles accordingly. The document provides an example implementation of a tiled scrolling view using CATiledLayer.