0

我正在开发一个需要访问应用程序版本号的 iOS 应用程序。

通过访问 Info.plist,我知道它在 Objective-C + Xcode 中更简单,但我希望 Corona SDK 中有这个功能。

这可能吗?如果是,那怎么办?
请帮忙,因为我被困在这里,无法前进。

4

1 回答 1

1

构建时属性可以在可选的 build.settings 文件中提供,该文件使用 Lua 语法。您可以通过此处显示的示例设置和检索 plist 值。

settings =
{
   orientation =
   {
       default = "portrait",
       supported =
       {
            "portrait", "portraitUpsideDown", "landscapeRight", "landscapeLeft"
     }
},


iphone =
{
    plist =
    {
        UIInterfaceOrientation = "UIInterfaceOrientationLandscapeRight",

        UISupportedInterfaceOrientations =
        {
            "UIInterfaceOrientationLandscapeLeft",
            "UIInterfaceOrientationLandscapeRight"
        },

        UIApplicationExitsOnSuspend = true,
        UIStatusBarHidden = true,
        UIPrerenderedIcon = true

       }
    }
}


settings.iphone.plist["UIInterfaceOrientation~ipad"] = "UIInterfaceOrientationPortrait"
settings.iphone.plist["UISupportedInterfaceOrientations~ipad"] = 
{
    "UIInterfaceOrientationPortrait",
    "UIInterfaceOrientationPortraitUpsideDown"
}
于 2012-04-12T16:43:49.560 回答