Contents

Views 1394 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

Swift 4, Swift 3 에서 문자열을 Date() 읽고.

Date()를 DateFormatter로 문자열 출력하는 간단한 예제



1. Extensions 필요함


import Foundation

extension DateFormatter {

    convenience init (format: String) {
        self.init()
        dateFormat = format
        locale = Locale.current
    }
}

extension String {

    func toDate (format: String) -> Date? {
        return DateFormatter(format: format).date(from: self)
    }

    func toDateString (inputFormat: String, outputFormat:String) -> String? {
        if let date = toDate(format: inputFormat) {
             return DateFormatter(format: outputFormat).string(from: date)
        }
        return nil
    }
}

extension Date {

    func toString (format:String) -> String? {
        return DateFormatter(format: format).string(from: self)
    }
}




2. 실행 예


var dateString = "14.01.2017T14:54:00"
let format = "dd.MM.yyyy'T'HH:mm:ss"
let date = Date()

print("original String with date:               \(dateString)")
print("date String() to Date():                 \(dateString.toDate(format: format)!)")
print("date String() to formated date String(): \(dateString.toDateString(inputFormat: format, outputFormat: "dd MMMM")!)")
print("format Date():                           \(date.toString(format: "dd MMM HH:mm")!)")



[출처] https://stackoverflow.com/questions/24777496/how-can-i-convert-string-date-to-nsdate



?

List of Articles
No. Category Subject Author Date Views
9 Algorithm OCB5 Injection 앗싸뵹! ㅋㅋ file hooni 2014.07.01 796
8 Algorithm 러시아 페인트공 알고리즘에 대해.. hooni 2013.04.23 22895
7 Algorithm 디피헬만(Diffie-Hellman) 초간단 개념.. hooni 2013.04.23 81019
6 Algorithm 암호 알고리즘 및 프로토콜의 이해.. file hooni 2013.04.23 17208
5 Algorithm Polynomial time 이란? ㅋㅋ hooni 2013.04.23 22681
4 Algorithm [security] 블럭 암호에 대해서.. hooni 2013.04.23 17118
3 Algorithm 스터디 자료, 암호화에 대해서.. 나중에 볼 ppt.. file hooni 2013.04.23 13370
2 Algorithm [security] RSA 암호화 설명과 예.. hooni 2013.04.23 16616
1 Algorithm [algorithm] Greedy (탐욕 기법) hooni 2003.04.23 15108
Board Pagination Prev 1 Next
/ 1