标签: xcode cocoa label textfield nstextfield
在我的Cocoa应用程序中,我在NSTextView中显示计算结果,现在我希望你能在NSextField中看到结果,我尝试了各方面但没有成功。
[textField insertText:[NSString stringWithFormat:@"%i \n", giorni]];
答案 0 :(得分:0)
如何:(为NS而不是UI textField编辑)
[textField setIntValue:giorni];