MacRuby xcode 标签不工作

发布于 2024-08-21 01:04:24 字数 391 浏览 6 评论 0原文

class HelloApp
        attr_accessor :label, :text_field, :button
        def clickedButton(sender)
            # implementation
            your_name = self.text_field.stringValue
            self.label.stringValue = "Hello,  #{your_name}"
        end
end

上面的代码在HelloApp.rb中 问题是,当我在文本框中输入内容并单击按钮时,标签只显示“Hello,”而不是“Hello,namegoeshere” 顺便说一句,我正在使用 MacRuby .4。

class HelloApp
        attr_accessor :label, :text_field, :button
        def clickedButton(sender)
            # implementation
            your_name = self.text_field.stringValue
            self.label.stringValue = "Hello,  #{your_name}"
        end
end

The above code is in HelloApp.rb
The problem is when I type something into the textbox, and click the button, the label just says "Hello, " and not "Hello, namegoeshere"
I am using MacRuby .4 by the way.

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

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

发布评论

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

评论(1

安人多梦 2024-08-28 01:04:24

您的代码在 MacRuby .5 中适用于我,

这是否将用户输入记录到控制台?

your_name = self.text_field.stringValue
puts "Your name is #{your_name}" 

如果没有,您可能没有将 text_field 连接到 Interface Builder 中的 NSTextField。

Your code works for me in MacRuby .5

Does this log the user input to the console?

your_name = self.text_field.stringValue
puts "Your name is #{your_name}" 

If not, you may not have the text_field hooked up to the NSTextField in Interface Builder.

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