How can I scroll down programatically an NSTextView? My purpose is to make a text view scroll down as I add more things to the text view without any user interaction.
You can't. NSTextViews don't scroll. Scrollable NSTextViews as dragged in IB are actually 3 views: An NSScrollView contains an NSClipView contains an NSTextView.
You can't. NSTextViews don't scroll. Scrollable NSTextViews as dragged in IB are actually 3 views: An NSScrollView contains an NSClipView contains an NSTextView.