在故事板中显示文本(字符串)

时间:2014-12-12 19:34:55

标签: objective-c storyboard nstextview outlet

我想在故事板文件中的NSTextView Outlet中显示一些文本(字符串),但它不起作用。我不确定我是否使用了最好的方法。所选方法“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

1 个答案:

答案 0 :(得分:0)

确保NSTextView连接到closerText IBOutlet。 insertText是正确的函数。