RFC3339DateFormatter 1.0.1

RFC3339DateFormatter 1.0.1

morishin 维护。



  • 作者:
  • morishin

RFC3339DateFormatter

Swift version CocoaPods compatible Carthage compatible Build Status

符合 RFC3339 的 DateFormatter

使用方法

Demo.playground

从字符串解析日期

import RFC3339DateFormatter

// with T, nanosecond
RFC3339DateFormatter.date(from: "2017-01-01T00:00:00.000Z")
RFC3339DateFormatter.date(from: "2017-01-01T09:00:00.000+09:00")
// with T
RFC3339DateFormatter.date(from: "2017-01-01T00:00:00Z")
RFC3339DateFormatter.date(from: "2017-01-01T09:00:00+09:00")
// with ` `, nanosecond
RFC3339DateFormatter.date(from: "2017-01-01 00:00:00.000Z")
RFC3339DateFormatter.date(from: "2017-01-01 09:00:00.000+09:00")
// with ` `
RFC3339DateFormatter.date(from: "2017-01-01 00:00:00Z")
RFC3339DateFormatter.date(from: "2017-01-01 09:00:00+09:00")
// different number of digits of nanosecond
RFC3339DateFormatter.date(from: "2017-01-01 00:00:00.0Z")

将日期转换为字符串

import RFC3339DateFormatter

RFC3339DateFormatter.string(from: Date()) // "2017-12-01T06:25:11.029Z"

安装

Carthage

Cartfile

github "morishin/RFC3339DateFormatter"

CocoaPods

Podfile

pod 'RFC3339DateFormatter'

LICENSE

MIT