error1

1.sqlite3

错误:

sqlite3_open("save.db", &pDB)

 

正确:

path = CCFileUtils::sharedFileUtils()->getWriteablePath()

sqlite3_open(path+"/save.db", &pDB)


注意

libsqlite3.dylib导入这个框架 否则:open,execute, close都会出错


2.添加minizip

error1_第1张图片










ZipArchive是一个整体的包不能分开添加进去


3.switch {}

错误提示: switch case in protected scope

case 1 {加这对括号}


4.static

(1)  (null): Symbol(s) notfound for architecture i386

.cpp

string  MM_JsonModel::getHttpJson_Apple()  对

static string  getHttpJson_Apple()          错

注意

尤其是当文件移动后更有可能出现这种情况: 最显著的特征是 .cpp或.mm或.m文件不能自动检查

自动检查后HD_MainMenuLayer

不自动检查HD_MainMenuLayer


全局变量在静态方法中引用出错

int errId_register = -1;

static int errId_register = -1;对

总结:

添加一个static 方法或成语变量一定要从新编译一下

























你可能感兴趣的:(error1)