반응형
iOS 15.5, Xcode 13.31, Swift 5, UIKit 환경에서 진행했습니다.
// iso8601 타입의 날짜
let dateString = "2014-08-01T07:00:00Z"
let isoDate = formatter.date(from: dateString)
// 변경할 데이트포맷
let myFormatter = DateFormatter()
myFormatter.dateFormat = "yyyy년 MM월 dd일"
let dateString = myFormatter.string(from: isoDate!)
반응형
'iOS > 코드조각' 카테고리의 다른 글
[iOS, Swift] UILabel TextColor 설정 (NSAttributedString) (0) | 2022.08.20 |
---|---|
[iOS, Swift] UILabel Font 설정 (0) | 2022.08.20 |
[iOS, Swift] urlSession network 통신 (0) | 2022.08.15 |
[iOS, Swift] CurrentValueSubject 사용하기, 테스트 코드 (Combine) (0) | 2022.08.14 |
[iOS, Swift] 테이블뷰 안의 테이블셀 버튼 클릭하기 (delegate) (0) | 2022.08.10 |