Created
July 15, 2010 06:04
-
-
Save fluxsaas/476565 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Controller | |
attr_accessor :timer | |
def startTimer(sender) | |
@timer = Timer.new | |
timerThread = NSThread.alloc.initWithTarget(@timer, | |
selector:'startTimer:', | |
object:'dummy_obj' ) | |
timerThread.start | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment