在行中:
local mail1 = native.showPopup("mail")
我收到: 运行时错误:/Users/liorbruder/Documents/main.lua:18:尝试调用字段' showPopup' (零值)。 看起来Native UI没有" showPopup"属性。我想念的是什么? 我怎么能用Corona发送电子邮件?
答案 0 :(得分: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