What is the correct way to get date of 18 years ago from today's Date in Swift3?
In Swift2, I had
let startingDate = NSDate(timeIntervalSinceNow: -600000000)
If you want date with 18 year less you can use Calendar unit year for that.
let date = Calendar.current.date(byAdding: .year, value: -18, to: Date())
Output
1.4m articles
1.4m replys
5 comments
57.0k users