At the moment (with the latest changes to Swift), NSDate.date()
is not longer available.
Instead you just need to initialize NSDate
and it gets the current date and time.
To try it, in a playground:
var d = NSDate()
d
and you will get:
Oct 22, 2014, 12:20 PM"