我有一个NSTextField
电话resultsView
,我想用字符串填充graphical_availability
。
我尝试了以下方法:
[resultsView setValue:graphical_availability];
但在运行时不断出错:
2012-08-13 08:39:08.468 App-Name[75231:6003] -[NSTextField setValue:]: unrecognized selector sent to instance 0x100509730
2012-08-13 08:39:08.470 App-Name[75231:6003] An uncaught exception was raised
2012-08-13 08:39:08.470 App-Name[75231:6003] -[NSTextField setValue:]: unrecognized selector sent to instance 0x100509730
所以,显然setValue
不被认为是NSTextField
我正在使用的类的方法。我是 Objective-C 的新手(显然)并且在 Apple 的文档中找不到它。
如何设置此文本字段的值?
谢谢!