Can any one give me an idea how to get the current date in milliseconds?
An extension on date is probably the best way to about it.
extension NSDate { func msFromEpoch() -> Double { return self.timeIntervalSince1970 * 1000 } }