NSDate to NSString


/ Published in: Objective C
Save to your folder(s)

convert nsdate to nsstring format


Copy this code and paste it in your HTML
  1. NSString *dateString = [NSDateFormatter localizedStringFromDate:[NSDate date]
  2. dateStyle:NSDateFormatterShortStyle
  3. timeStyle:NSDateFormatterFullStyle];
  4. NSLog(@"%@",dateString);

Report this snippet


Comments


You need to login to view comments.