NSTableView里面的NSTextView滚动滚动

时间:2017-08-09 05:19:09

标签: nstableview nstextview nsscrollview

我有NSTableView,每个表格行中都有一个NSTextView。我在故事板中的NSTextView上禁用了滚动功能。我可以滚动我的NSTableView就好了,但当我的鼠标光标位于NSTextView的顶部时,滚动停止。我认为这是因为NSTextView正在拦截滚动行为。

箭头指向NSTextView

Arrow points to the NSTextView

请注意,NSTextView位于子类NSTableViewCell中。

class AnnouncementsVC: NSViewController, NSTableViewDelegate, NSTableViewDataSource {
  @IBOutlet weak var tableView: NSTableView!

  override func viewDidLoad() {
    //...
  }
  func numberOfRows(in tableView: NSTableView) -> Int {
    //...
  }
  func tableView(_ tableView: NSTableView, viewFor tableColumn: NSTableColumn?, row: Int) -> NSView? {
    //...
  }
}

class AnnouncementTableCell: NSTableCellView{
  @IBOutlet weak var message: NSTextView!
}

如何让NSTextView将其滚动事件传递给其父NSTableView?我的猜测是我需要scrollWheel(with event: NSEvent)但我不确定它在哪里,因为我在这里有两个不同的课程。

2 个答案:

答案 0 :(得分:1)

实现这一目标的一种方法是子类NSScrollView并实现scrollWheel:以有条件地(1)根据需要在子类实例中使用scroll-events,或者(2)将它们转发到根据您的实例封闭scrollview'当前的滚动。

这是我过去使用的一个相当基本的实施(Obj-C):

- (void)scrollWheel:(NSEvent *)e {


    if(self.enclosingScrollView) {

        NSSize
        contSize = self.contentSize,
        docSize = [self.documentView bounds].size,
        scrollSize = NSMakeSize(MAX(docSize.width  - contSize.width, 0.0f),
                                MAX(docSize.height - contSize.height,0.0f) );

        NSPoint
        scrollPos = self.documentVisibleRect.origin,
        normPos = NSMakePoint(scrollSize.width  ? scrollPos.x/scrollSize.width  : 0.0,
                              scrollSize.height ? scrollPos.y/scrollSize.height : 0.0 );

        if( ((NSView*)self.documentView).isFlipped ) normPos.y = 1.0 - normPos.y;

        if(   ( e.scrollingDeltaX>0.0f && normPos.x>0.0f) 
           || ( e.scrollingDeltaX<0.0f && normPos.x<1.0f)
           || ( e.scrollingDeltaY<0.0f && normPos.y>0.0f)
           || ( e.scrollingDeltaY>0.0f && normPos.y<1.0f) ) {

            [super scrollWheel:e];

        }
        else

            [self.nextResponder scrollWheel:e];

    }
    else 
        // Don't bother when not nested inside another NSScrollView
        [super scrollWheel:e];
}

它仍然有很多不足之处,例如独立处理deltaX和deltaY组件,但也许它足以满足你的需要。

答案 1 :(得分:0)

这是一个运行良好的Swift(4.2)版本:

class MyScrollClass: NSScrollView{
  override func scrollWheel(with event: NSEvent) {
    self.nextResponder?.scrollWheel(with: event)
  }
}

只需将该子类添加到您的NSScrollView中,它就可以正常工作。