Cocos2d-x游戏开发之jsoncppdemo

前端之家收集整理的这篇文章主要介绍了Cocos2d-x游戏开发之jsoncppdemo前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
	//json解析,使用jsoncpp

	CSJson::Reader reader;
	CSJson::Value root;
	if (reader.parse(resData,root)) {
		int count = root.size();
		CCLog("count:%d",count);
		
		for (int i = 0; i < count; i++) {//使用int,否则size_t在mac在重载报错
			CSJson::Value temp = root[i];
			int id = temp["id"].asInt();
			string title = temp["title"].asString();
			
			string thumb = temp["thumb"].asString();
			getImageFromServer(thumb);

			string url = temp["url"].asString();
			CCLog("id: %d title:%s thumb:%s url:%s",id,title.c_str(),thumb.c_str(),url.c_str());
		}
	}
原文链接:https://www.f2er.com/cocos2dx/347131.html

猜你在找的Cocos2d-x相关文章