Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating an NSDateFormatter in Swift? [closed]

Tags:

I am new to swift and am very unfamiliar with Objective-C. Could someone help me convert this to Swift? I got this code from Ray Wenderlich's best iOS practices - http://www.raywenderlich.com/31166/25-ios-app-performance-tips-tricks

Where would you put this code? Would it go in a class file full of global variables?

- (NSDateFormatter *)formatter {     static NSDateFormatter *formatter;     static dispatch_once_t onceToken;     dispatch_once(&onceToken, ^{         _formatter = [[NSDateFormatter alloc] init];         _formatter.dateFormat = @"EEE MMM dd HH:mm:ss Z yyyy"; // twitter date format     });     return formatter; } 
like image 856
John Pollard Avatar asked Feb 13 '15 16:02

John Pollard


2 Answers

  1. If you're really looking for direct analog to the method in your question, you could do something like:

    class MyObject {      // define static variable      private static let formatter: DateFormatter = {         let formatter = DateFormatter()         formatter.dateFormat = "EEE MMM dd HH:mm:ss Z yyyy"         return formatter     }()      // you could use it like so      func someMethod(date: Date) -> String {         return MyObject.formatter.string(from: date)     } } 

    The static properties, like globals, enjoy dispatch_once behavior for their default values. For more information, see the dispatch_once discussion at the end of the Files and Initialization entry in Apple's Swift blog.

  2. Regarding best practices with date formatters, I would suggest:

    • Yes, it is prudent to not unnecessarily create and destroy formatters that you're likely to need again. In WWDC 2012 video, iOS App Performance: Responsiveness, Apple explicitly encourages us to

      • Cache one formatter per date format;

      • Add observer for NSLocale.currentLocaleDidChangeNotification through the NotificationCenter, and clearing/resetting cached formatters if this occurs; and

      • Note that resetting a format is as expensive as recreating, so avoid repeatedly changing a formatter's format string.
         

      Bottom line, reuse date formatters wherever possible if you're using the same date format repeatedly.

    • If using DateFormatter to parse date strings to be exchanged with a web service (or stored in a database), you should use en_US_POSIX locale to avoid problems with international users who might not be using Gregorian calendars. See Apple Technical Q&A #1480 or the “Working With Fixed Format Date Representations” discussion in the DateFormatter documentation. (Or in iOS 10 and macOS 10.12, use ISO8601DateFormatter.)

      But when using dateFormat with DateFormatter, use the current locale for creating strings to be presented to the end user, but use en_US_POSIX local when creating/parsing strings to be used internally within the app or to be exchanged with a web service.

    • If formatting date strings for the user interface, localize the strings by avoiding using string literals for dateFormat if possible. Use dateStyle and timeStyle where you can. And if you must use custom dateFormat, use templates to localize your strings. For example, rather than hard-coding E, MMM d, in Swift 3 and later, you would use dateFormat(fromTemplate:options:locale:):

      formatter.dateFormat = DateFormatter.dateFormat(fromTemplate: "EdMMM", options: 0, locale: Locale.current) 

      This will automatically show, for example, "Mon, Sep 5" for US users, but "Mon 5 Sep" for UK users.

    • The DateFormatter is now thread safe on iOS 7 and later and 64-bit apps running on macOS 10.9 and later.

For Swift 2 examples, see previous revision of this answer.

like image 158
Rob Avatar answered Nov 10 '22 00:11

Rob


As Rob said, you must be careful with performance creating DateFormatters, use the tips from that WWDC session.

I am doing this as extensions of NSDate and NSDateFormatter (code tested in Swift 2, 3 and 4):

extension NSDate {     func PR2DateFormatterUTC() -> String {         return NSDateFormatter.PR2DateFormatterUTC.stringFromDate(self)     }     //... more formats }  extension NSDateFormatter {     fileprivate static let PR2DateFormatterUTC: NSDateFormatter = {         let formatter = NSDateFormatter()         let timeZone = NSTimeZone(name:"UTC")         formatter.dateFormat = "yyyy-MM-dd HH:mm:ss"         formatter.timeZone = timeZone         return formatter     }()     //... more formats } 

Usage:

    let dateStringUTC  = NSDate().PR2DateFormatterUTC() 
like image 31
PabloR Avatar answered Nov 09 '22 22:11

PabloR