我想在故事板文件的 NSTextView 插座中显示一些文本(字符串),但它不起作用。我不确定我是否使用了最好的方法。选择的方法“insertText”是否正确?插座连接是否正确?故事板是否支持 NSTextView 类?
任何帮助深表感谢。
ViewController.h
@interface ViewController : NSViewController
@property (unsafe_unretained) IBOutlet NSTextView *closerText;
@end
ViewController.c
@implementation ViewController
@synthesize closerText;
- (void)viewDidLoad {
[super viewDidLoad];
[closerText insertText:@"Hello World"];
}
@end