1

在行中:

local mail1 = native.showPopup("mail")

我收到:运行时错误:/Users/liorbruder/Documents/main.lua:18:尝试调用字段“showPopup”(零值)。看起来 Native UI 没有“showPopup”属性。我在这里想念什么?以及如何使用 Corona 发送电子邮件?

4

1 回答 1

1

showPopup 仅在 build 714 中可用。

对于以前版本的 Corona,您可以使用

local link = "mailto:nobody@mycompany.com?subject=Hi%20there&body=I%20just%20wanted%20to%20say%2C%20Hi!"
system.openURL(link)

有关更多详细信息,请参见此处。 http://developer.anscamobile.com/reference/index/systemopenurl

于 2012-05-15T23:34:10.470 回答