Disable scrolling in NSTableView
Asked Answered
B

5

11

Is there a simple way to disable scrolling of an NSTableView.

It seems there isn't any property on [myTableView enclosingScrollView] or [[myTableView enclosingScrollView] contentView] to disable it.

Banquet answered 27/9, 2012 at 16:48 Comment(0)
L
20

This works for me: subclass NSScrollView, setup and override via:

- (id)initWithFrame:(NSRect)frameRect; // in case you generate the scroll view manually
- (void)awakeFromNib; // in case you generate the scroll view via IB
- (void)hideScrollers; // programmatically hide the scrollers, so it works all the time
- (void)scrollWheel:(NSEvent *)theEvent; // disable scrolling

@interface MyScrollView : NSScrollView
@end

#import "MyScrollView.h"

@implementation MyScrollView

- (id)initWithFrame:(NSRect)frameRect
{
    self = [super initWithFrame:frameRect];
    if (self) {
        [self hideScrollers];
    }

    return self;
}

- (void)awakeFromNib
{
    [self hideScrollers];
}

- (void)hideScrollers
{
    // Hide the scrollers. You may want to do this if you're syncing the scrolling
    // this NSScrollView with another one.
    [self setHasHorizontalScroller:NO];
    [self setHasVerticalScroller:NO];
}

- (void)scrollWheel:(NSEvent *)theEvent
{
    // Do nothing: disable scrolling altogether
}

@end

I hope this helps.

Lepidolite answered 18/12, 2012 at 19:57 Comment(2)
To be more precise : an NSTableView is not an NSScrollView, it is enclosed in one. So you'll have to change the enclosing NSScrollView to this custom class.Indiscriminate
I downvoted because this causes strange and user-hostile behavior if this is the child of a working scroll viewHoneyman
H
20

Here's the best solution in my opinion:

Swift 5

import Cocoa

@IBDesignable
@objc(BCLDisablableScrollView)
public class DisablableScrollView: NSScrollView {
    @IBInspectable
    @objc(enabled)
    public var isEnabled: Bool = true

    public override func scrollWheel(with event: NSEvent) {
        if isEnabled {
            super.scrollWheel(with: event)
        }
        else {
            nextResponder?.scrollWheel(with: event)
        }
    }
}


Simply replace any NSScrollView with DisablableScrollView (or BCLDisablableScrollView if you still use ObjC) and you're done. Simply set isEnabled in code or in IB and it will work as expected.

The main advantage that this has is for nested scroll views; disabling children without sending the event to the next responder will also effectively disable parents while the cursor is over the disabled child.

Here are all advantages of this approach listed out:

  • ✅ Disables scrolling
    • ✅ Does so programmatically, behaving normally by default
  • ✅ Does not interrupt scrolling a parent view
  • ✅ Interface Builder integration
  • ✅ Drop-in replacement for NSScrollView
  • ✅ Swift and Objective-C Compatible
Honeyman answered 22/2, 2018 at 19:19 Comment(7)
Given that the question is tagged objective-c, it's rather curious that your opinion is that a swift answer (which in my tiny swift knowledge, seems to be nothing more than a port of the existing objective c answers) is "best". Care you elaborate?Metropolitan
@Metropolitan Well firstly the question was asked before Swift went public, so I doubt OP really specifically needs an ObjC answer 😛 Second, if you read the non-code text in my answer, you'll see the main advantage. In addition to that advantage, this includes IB integration. Also, in incorporates ideas from several other answers into one.Honeyman
Well, unless the op has moved his/her codebase from ObjC to swift, I wouldn't expect their needs to have changed ;) But the IB addition is cool (and one I didn't grasp prior to your comment -- like I mentioned, my swift knowledge is tiny.). Thanks!Metropolitan
That's the beauty of Swift. Just drop this into Xcode and tell it to create a bridging header... and you're pretty much done. I started writing an Objective-C version (it's commented-out in the source if you wanna look), but stopped once I realized that I'd have to override constructors just to provide the default true value for isEnabled. Either way, this can be used in ObjC as well without modification! :DHoneyman
What is BCLDisablableScrollView ?Baumgardner
@Baumgardner it's declared on line 4 of my example code 🙂Honeyman
@KyLeggiero ah yes, now I see. I thought it was from a 3rd party package.Baumgardner
M
9

Thanks to @titusmagnus for the answer, but I made one modification so as not to break scrolling when when the "disabled" scrollView is nested within another scrollView: You can't scroll the outer scrollView while the cursor is within the bounds of the inner scrollView. If you do this...

- (void)scrollWheel:(NSEvent *)theEvent
{
    [self.nextResponder scrollWheel:theEvent];
    // Do nothing: disable scrolling altogether
}

...then the "disabled" scrollView will pass the scroll event up to the outer scrollView and its scrolling will not get stuck down inside its subviews.

Miocene answered 9/10, 2014 at 20:9 Comment(1)
This answer provided what appears to me so far as the most practical way to work around NSTextView getting placed in a scrolling container by default. Thanks.Pneumonia
T
2

Works for me:

- (void)scrollWheel:(NSEvent *)theEvent
{
    [super scrollWheel:theEvent];

    if ([theEvent deltaY] != 0)
    {
        [[self nextResponder] scrollWheel:theEvent];
    }
}
Taille answered 16/8, 2016 at 6:8 Comment(0)
S
1

There is no simple direct way (meaning, there's no property like UITableView's scrollEnabled that you can set), but i found this answer helpful in the past.

One other thing you could try (not sure about this) is subclassing NSTableView and override -scrollWheel and -swipeWithEvent so they do nothing. Hope this helps

Skillful answered 27/9, 2012 at 17:18 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.