gpt4 book ai didi

objective-c - 在 NSTableView 中禁用滚动

转载 作者:太空狗 更新时间:2023-10-30 03:27:08 24 4
gpt4 key购买 nike

是否有一种简单的方法来禁用 NSTableView 的滚动。

似乎没有任何属性[myTableView enclosingScrollView][[myTableView enclosingScrollView] contentView] 禁用它。

最佳答案

这对我有用:子类 NSScrollView,通过以下方式设置和覆盖:

- (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

希望对您有所帮助。

关于objective-c - 在 NSTableView 中禁用滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12626288/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com