我想在加载屏幕的背景中加载一些东西(带动画)。我正在尝试使用 pthread,但它不适用于 android。在windows上没有问题。
我有这样的线程函数:
static void* ThreadFunction(void *o)
{
CCMessageBox("ThreadFunction", "MainLayer");
return NULL;
}
并像这样创建线程:
pthread_t thread;
CCMessageBox("pthread_create", "MainLayer");
pthread_create(&thread, NULL, ThreadFunction, 0);
在 Windows 上一切正常:我看到 2 条消息。在android上我只看到第一条消息(“pthread_create”)。
我试图在我的层的onEnter
, onClick
,方法中创建线程。constructor
我正在使用 cocos2d-x 2.0.4。有人可以帮助我吗?