我如何使用rhomobile在我的iphone中显示警报消息

时间:2010-12-17 06:58:55

标签: iphone rhomobile

我如何使用rhomobile在我的iphone中显示警告信息?

谢谢, 同伴

2 个答案:

答案 0 :(得分:2)

答案 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