2
我有一個向用戶顯示組合框的函數。Ruby(鞋子) - 等待函數返回值
def select_interface(interfaces)
list_box :items => interfaces do |list|
interface = list.text
end
### ideally should wait until interface has a value then: ###
return interface
end
該程序的其餘部分取決於從該組合框中的選擇。
我想找到一種方法讓紅寶石等待來自組合框的輸入,然後執行其餘的代碼。
interface = ask("write your interface here")
我該如何在Ruby/shoes中實現這個「等到變量具有值」函數?
您的解決方案確實工作得很好。 感謝您的幫助! – ischnura 2008-12-28 20:10:23