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 を使用していることです。