如何将某些代码中的 int 值设置为等于文本输入框中的值?

发布于 2024-09-04 18:35:47 字数 32 浏览 7 评论 0原文

我正在尝试从我的 mac 应用程序中的对象获取值。

I'm trying to get a value from an object in my mac application.

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

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

发布评论

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

评论(1

梦醒灬来后我 2024-09-11 18:35:47

NSControl(其中NSTextField)是一个子类,它有一个方法intValue,它可以让你得到你想要的东西。在控制器中设置一个插座,并使用 Interface Builder 将其连接到您关心的文本字段。之后,您的控制器可以像这样访问它:

int myInt = [myTextField intValue];

出口声明将类似于:

IBOutlet NSTextField *myTextField;

以及控制器的其他实例变量。

NSControl, of which NSTextField is a subclass, has a method intValue, which gets you what you want. Set up an outlet in your controller and use Interface Builder to hook it up to the text field you care about. After that, your controller can just access it like:

int myInt = [myTextField intValue];

The outlet declaration would look something like:

IBOutlet NSTextField *myTextField;

Along with your controller's other instance variables.

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