我正在使用 cocos2d-2.0-rc2-x-2.0.1 @ Jun 29 2012 并写了这个
。H
...
protected:
CCArray *array;
...
.cpp
...
bool HelloWorld::init()
{
...
array= CCArray::create(2);
array->addObject(obj1);
array->addObject(obj2);
...
}
void HelloWorld::ccTouchesBegan(CCSet* touches, CCEvent* event)
{
CCLog("%i", array->count());
}
...
并得到了这个:0xC0000005:访问冲突读取位置“0xfeeefeee”。
在
CCArray.cpp
unsigned int CCArray::count()
{
return data->num;
}
请帮忙。