首页 > 其他 > 详细

quick 事件派发

时间:2015-05-03 23:33:38      阅读:263      评论:0      收藏:0      [点我收藏+]
local TestScene1 = class("TestScene1", function()
    return display.newScene("TestScene1")
end)


function TestScene1:ctor()
    cc(self):addComponent("components.behavior.EventProtocol"):exportMethods()

    local Common=require("src.app.scenes.Common")

    self:addEventListener(Common.PRINT_EVENT, function(event)
        print("print event")
    end)

    --派发一个事件
    self:dispatchEvent({name = Common.PRINT_EVENT})

end

return TestScene1

 

 

--这种方式非常值得学习,下次再导入外部函数的时候就可以使用了
local Common = class("Common")

Common.PRINT_EVENT="PRINT_EVENT"

return Common

 

quick 事件派发

原文:http://www.cnblogs.com/yufenghou/p/4474874.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!