Skip to content

Instantly share code, notes, and snippets.

@fluxsaas
Created July 15, 2010 06:04
Show Gist options
  • Save fluxsaas/476565 to your computer and use it in GitHub Desktop.
Save fluxsaas/476565 to your computer and use it in GitHub Desktop.
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