码迷,mamicode.com
首页 > 其他好文 > 详细

quick 事件派发

时间:2015-05-03 23:35:30      阅读:207      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!