Scrolling NSTextView to bottom

前端 未结 5 461

I\'m making a little server app for OS X and I\'m using an NSTextView to log some info about connected clients.

Whenever I need to log something I\'m appending the n

5条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-15 09:56

    I have some customised NSTextView and custom input method so my option was to use:

    self.scrollView.contentView.scroll(NSPoint(x: 1, y: self.textView.frame.size.height))
    

提交回复
热议问题