我有一个 NSTextView,我在其上附加控制台日志。我已经在带有滚动视图的 XIB 文件中实现了这个 UI。当我的应用程序在文本视图中附加控制台日志时,我希望滚动条自动转到文本视图的末尾。我在 XIB 编辑器中找不到任何属性。知道如何实现这一目标吗?
@property(nonatomic, strong) IBOutlet NSTextView *logTextView;
[[self.logTextView textStorage] beginEditing];
[[[self.logTextView textStorage] mutableString] appendString:iData];
[[[self.logTextView textStorage] mutableString] appendString:@"\n"];
[[self.logTextView textStorage] endEditing];