swift 상대적 시간, 1일전, 1시간 전,
1 일 전, 1 시간 전, 몇 분 전, 몇 분 후, 시간 후, 일 후, 리뷰를 쓴 시간을 유저에게 보여주게 되면서 저런 시간 표현이 필요했다. 아주 간단하게.. func relativeTime(in locale: Locale = .current, unitsStyle: RelativeDateTimeFormatter.UnitsStyle = .full) -> String { let formatter = RelativeDateTimeFormatter() formatter.unitsStyle = unitsStyle return formatter.localizedString(for: self, relativeTo: Date()) } public enum UnitsStyle : Int { case full = 0 /..
2020. 10. 20.