How to calculate the date six months from the current date in Swift

1 Answer

0 votes
import Foundation

func addMonthsToDate(months: Int, date: Date = Date()) -> Date {
    var components = DateComponents()
    components.month = months
    return Calendar.current.date(byAdding: components, to: date) ?? date
}

let futureDate = addMonthsToDate(months: 6)
let formatter = DateFormatter()
formatter.dateFormat = "yyyy-MM-dd"

print("Date six months from now: \(formatter.string(from: futureDate))")



/*
run:

Date six months from now: 2025-12-12

*/

 



answered Jun 12, 2025 by avibootz
...