Search code examples
objective-ccocoansscrollviewnscollectionviewpdfview

Disable scroll for PDFView inside NSCollectionView


I have a PdfView inside a CollectionView. Since both have its own scrollviews I have conflicts in scrolling. So i want to disable scrolling for PdfView. How can I do it?


Solution

  • For a regular Scroll View you can remove scrolls by setting horizontal & vertical scrolls to false value. So for a PDF view try this :

    NSScrollView *enclosingScrollView = [myPdfView enclosingScrollView];
    [enclosingScrollView setHasHorizontalScroller:NO];
    [enclosingScrollView setHasVerticalScroller:NO];