[Swift] Date에서 Year, Month, Day 추출 및 날짜 차이 비교
개발을 하다보면 날짜를 구하거나, 날짜차이를 알아야 할때가 있습니다. 이럴 경우 어떻게 처리하는지 알아 보겠습니다. Year, Month, Day 알아내기 Calender를 사용하면 간편하게 입력된 날짜의 Year, Month, Day를 알아낼 수 있습니다. 그럼 바로 알아보겠습니다. let now = Date() let components = Calendar.current.dateComponents([.year,.month, .day], from: now) let year = components.year let month = components.month let day = components.day 위와 같이 처리할 경우 Year, Month , day의 값을 Int로 알아낼수 있습니다. 만일 현재 날..
2023. 11. 21.