有没有办法将 NSTextView 的textStorage
属性设置为我自己的 NSTextStorage?您可以自定义 NSTextContainer,所以有没有办法做这样的事情:
NSTextView *myTV = [[NSTextView alloc] initWithFrame:CGFrameMake(0,0,100,100)
withTextStorage:myTextStorage];
如果没有,有没有办法在文本视图实例化后换出默认的文本存储?这需要通过继承 NSTextView 来完成吗?