0

此错误消息来自使用 marmalade + c++ 设置本机 ui 移动应用程序的教程。

错误信息:

Message: Failed to open file iwui_style/iwui_style.group

这是主文件:

#include "IwNUI.h"

using namespace IwNUI;

int main()
{
    CAppPtr app = CreateApp();
    CWindowPtr window = CreateWindow();

    app->AddWindow(window);

    CViewPtr view = CreateView("canvas");

    CButtonPtr button1 = CreateButton(CAttributes()
        .Set("name",    "Button1")
        .Set("caption", "Hello World!")
        .Set("x1",      "10")
        .Set("y1",      "10"));

    view->AddChild(button1);

    window->SetChild(view);

    app->ShowWindow(window);

    app->Run();

    return 0;
}

和 mkb 文件:

files
{
    (source)
    app.cpp
}

subprojects
{
    s3e
    IwNUI
}

defines
{
    IW_USE_LEGACY_MODULES
}

任何帮助都会很棒。谢谢!

4

1 回答 1

1

IwNUI 模块使用 IwUI 模块作为备份。作为 hack,您可以将 IwNUI 基本示例项目的数据文件夹复制到您的项目中。数据文件夹将包含您已包含在项目中的资源组文件。

于 2013-04-22T21:02:52.273 回答