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 问题是当我在文本框中输入一些内容并单击按钮时,标签只是说“你好”,而不是“你好,namegoeshere”。顺便说一下,我使用的是 MacRuby .4。