Contents

조회 수 1408 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

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



?

  1. [ios] UIView에서 상위 UIViewController 가져오기

  2. [ios] UITableView 특정 Row만 Update

  3. [ios] UILabel top alignㅎㅎ

  4. [ios] UIColor 지정에서 RGB define ㅎㅎ

  5. [ios] UIButton multi-line iOS7

  6. [ios] UIAlertView 초간단 샘플 ㅎㅎ

  7. [ios] UDID와 UUID (디바이스의 Unique Identifier)

  8. [ios] UDID 사용 제한에 따른 대안들

  9. [ios] Touch ID 적용 샘플 코드 (예제)

  10. [ios] Thread Loop 내에서 UI 업데이트 방법

  11. [ios] TextField 특정 문자만 사용하도록 하기

  12. [ios] Swift 4 String, Date, DateFormatter 예제

Board Pagination Prev 1 ... 48 49 50 51 52 53 54 55 56 57 ... 98 Next
/ 98