Scrolling NSTextView to bottom

前端 未结 5 469

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 10:22

    Swift 4 + 5

    let smartScroll = self.textView.visibleRect.maxY == self.textView.bounds.maxY
    
    self.textView.textStorage?.append("new text")
    
    if smartScroll{
        self.textView.scrollToEndOfDocument(self)
    }
    
    

提交回复
热议问题