I can\'t find any parameter that seems to be related with the text value showed in a NSTextView. I understood that a NSTextView uses a complex stru
NSTextView
Objective C / Xcode 9
[myTextView setString:@"The string"]; self.myTextView.string = @"My String";
Swift / Xcode 9
self.myTextView.setString("MyString") self.myTextView.string = "My String"