How can I reduce 5
or 10
minutes from current time and then store it as date format in Swift 2.0 ?
let now = NSDate()
var reducedTime = ???? \\ Here I want 10 minutes reduced from current time.
If current time is 02:20:00, then reducedTime
should be 02:10:00
How can I do this in a simplest way ???