I have a Swift class that I\'d like to look something like this:
class UpdateManager { let timer: NSTimer init() { timer = NSTimer(timeInterval: 600
You've found the primary use case of the Implicitly Unwrapped Optional.
self
init
timer
So, you should declare let timer: NSTimer!.
let timer: NSTimer!