VLDFormatter

@interface VLDFormatter

Class providing basic date formatters

  • DateFormatter with UTC timezone and format of yyyy-MM-dd’T'HH:mm:ssxxx

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDateFormatter *ISO8601DateTimeFormatter
  • DateFormatter with Local timezone and format of yyyy-MM-dd’T'HH:mm:ssxxx

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDateFormatter *ISO8601LocalDateTimeFormatter
  • DateFormatter with UTC timezone and format of yyyy-MM-dd

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDateFormatter *ISO8601DateFormatter
  • DateFormatter with xxx timezone

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDateFormatter *timeZoneFormatter
  • NumberFormatter with no format set

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumberFormatter *numberFormatter
  • Singleton

    Declaration

    Objective-C

    + (instancetype)sharedFormatter;