Guest User

Untitled

a guest
Jun 22nd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. @implementation NSDateFormatter (Extensions)
  2.  
  3. - (id) initWithFormat {
  4. if (self = [super init]) {
  5. [self setDateFormat:@"y-M-d'T'H:m:s.SSSZ"];
  6. }
  7. return self;
  8. }
  9.  
  10. @end
Add Comment
Please, Sign In to add comment