以编程方式更改 NSTextField 中的文本?

发布于 2024-10-13 17:05:27 字数 186 浏览 5 评论 0原文

我习惯在 Cocoa-touch 中这样做,所以我认为这会很简单。我已经尝试过:

field.text = [nsstring stringwithformat:@"%i", number];
[field setText:@"%i", number];

和setString,都无济于事。

I am used to doing this in Cocoa-touch, so I assumed it would be quite simple. I have already tried:

field.text = [nsstring stringwithformat:@"%i", number];
[field setText:@"%i", number];

and setString, all to no avail.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尝蛊 2024-10-20 17:05:27

这将起作用:

[field setStringValue:[NSString stringWithFormat:@"%i",number]];

如果它没有执行任何操作,则可能意味着 field 未设置为指向该字段(例如,通过在 Interface Builder 中建立连接)。

This will work:

[field setStringValue:[NSString stringWithFormat:@"%i",number]];

If it doesn't do anything, it probably means field isn't set to point to the field (e.g. by making a connection in Interface Builder).

梦行七里 2024-10-20 17:05:27

您应该能够使用 setStringValue: 方法 NSTextField 继承自 NSControl

完整的签名是:

- (void)setStringValue:(NSString *)aString

You should be able to use the setStringValue: method that NSTextField inherits from NSControl.

The full signature is:

- (void)setStringValue:(NSString *)aString
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文