Contents

Views 1396 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
11 PPT [ppt] iOS 플라랩#02(2015.03.19) 발표 자료 file hooni 2015.04.24 898
10 PPT [ppt] iOS 플라랩#03(2015.04.27) 발표 자료 file hooni 2015.04.24 1057
9 PPT [ppt] Equation Solving 발표 자료 (@AjaxUI랩 밋업데이 2012.02.28) file hooni 2015.07.22 908
8 PPT [ppt] Information Security 발표 자료 (@Team Study 2012.11.15) file hooni 2015.07.22 881
7 PPT [ppt] Macro for board game 발표자료 (@Team Study 2013.01.18) 1 file hooni 2015.07.22 1270
6 PPT [ppt] OCB기술개발팀 OJT 자료 file hooni 2015.11.13 1153
5 PPT [ppt] 전자금융보안론 발표/설치 자료 file hooni 2016.05.03 1324
4 PPT 삼성페이(Samsung Pay) 구조 file hooni 2016.09.09 925
3 PPT [ppt] 보안경제학 발표자료 secret hooni 2016.11.11 5
2 PPT [ppt] 정보보호관리 발표내용 file hooni 2016.11.30 1075
1 PPT [ppt] 정보보호관리 발표내용 #2 file hooni 2016.12.08 1065
Board Pagination Prev 1 2 3 Next
/ 3