本文主要是介绍wax框架下lua使用NSTimer,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
timer = NSTimer:scheduledTimerWithTimeInterval_target_selector_userInfo_repeats(1, self, "handleTimer:", nil, true)count = 1function handleTimer()puts("=====handel timer %d======", count)count = count +1
end
xcode编辑lua的时候老提示re-save不知道有什么办法没
我暂时先用appcode写代码
这篇关于wax框架下lua使用NSTimer的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!