我如何使用rhomobile在我的iphone中显示警告信息?
谢谢, 同伴
答案 0 :(得分:2)
您使用Alert.show_message:
http://wiki.rhomobile.com/index.php/RhodesDeviceCapabilities#Alerts
答案 1 :(得分:0)
非常简单 - 这是我的应用程序中的一个示例。它会弹出一个瞬间警报,其中包含一个名为@@ remote_version的全局变量,然后在2秒后隐藏。
Alert.show_popup :message=> 'Indexing Department List v.' + @@remote_version, :title => 'One Moment Please'
sleep 2
Alert.hide_popup
希望有所帮助。 -Jon