I am trying to get the dates for the whole week. I can currently get the current date, but I want to add 6 days to that so I can get a list of the whole week. How would I do that? Any help is appreciated!
let now = NSDate()
override func viewDidLoad() {
super.viewDidLoad()
print("Now \(now)") //prints current date
}