the way I understand it is that the clipview is the contentview of the scrollview. Calling [scrollView setDocumentView: imageView] produces a warning. setDocumentView wants an NSClipview.The NSClipView does have a documentView so I tried:[self.scrollView.contentView setDocumentView:imageView];which also doesn't work. The image shows up in the scrollview.I have examined each of the objects in the debug output window and everything seems right, except no scrolling.for example:(lldb) po imageView.frame(origin = (x = 0, y = 0), size = (width = 1920, height = 1200))(lldb) po self.scrollView.frame(origin = (x = 62, y = 52), size = (width = 324, height = 209))(lldb) po self.scrollView.contentView.frame(origin = (x = 1, y = 1), size = (width = 322, height = 207))