码迷,mamicode.com
首页 > 移动开发 > 详细

[ios5 cocos2d游戏开发实战] 笔记3-FileUtils, notificationCenter

时间:2014-05-08 23:00:07      阅读:419      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   color   

FileUtils

bubuko.com,布布扣
//文件管理工具
FileUtils::getInstance()
std::string getStringFromFile(const std::string& filename);//读取文件中的字符串
Data getDataFromFile(const std::string& filename);//获取文件数据
void setSearchPaths(const std::vector<std::string>& searchPaths);//设置搜索路径
void addSearchPath(const std::string & path);//增加搜索路径
bool isFileExist(const std::string& filePath);//判断文件是否存在
bubuko.com,布布扣

 

NotificationCenter

 

bubuko.com,布布扣
//发送事件
CCNotificationCenter::sharedNotificationCenter()->postNotification(CLICK_TEST_MSG, (CCObject*)data);

//监听事件
void GameManager::initListener()
{
    CCNotificationCenter::sharedNotificationCenter()->addObserver(this, callfuncO_selector(GameManager::onClickTest), CLICK_TEST_MSG, NULL);
}

//处理事件
void GameManager::onClickTest(CCObject* obj)
{
    CCMessageBox("onClickTest", "Title");

    //移除监听事件
    CCNotificationCenter::sharedNotificationCenter()->removeObserver(this, CLICK_TEST_MSG);
}
bubuko.com,布布扣

 

bubuko.com,布布扣
typedef void (CCObject::*SEL_SCHEDULE)(float);// 用来调update  
typedef void (CCObject::*SEL_CallFunc)();// 用来自定义无参回调  
typedef void (CCObject::*SEL_CallFuncN)(CCNode*);// 带执行者回调  
typedef void (CCObject::*SEL_CallFuncND)(CCNode*, void*); // 带一个自定参数的回调  
typedef void (CCObject::*SEL_CallFuncO)(CCObject*);  
typedef void (CCObject::*SEL_MenuHandler)(CCObject*);  
typedef void (CCObject::*SEL_EventHandler)(CCEvent*);  
typedef int (CCObject::*SEL_Compare)(CCObject*); 
bubuko.com,布布扣

 

 

 

 

[ios5 cocos2d游戏开发实战] 笔记3-FileUtils, notificationCenter,布布扣,bubuko.com

[ios5 cocos2d游戏开发实战] 笔记3-FileUtils, notificationCenter

标签:style   blog   class   code   java   color   

原文地址:http://www.cnblogs.com/zengyou/p/3716736.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!