gnustep-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

dateFromString always returns null


From: Steven LeMaire
Subject: dateFromString always returns null
Date: Sun, 10 Feb 2013 16:01:29 -0500

Hi Everyone, 

I really don't understand why the code below isn't working for me. I've tried 
setting a locale and timezone on the date formatter, but it's had no affect.
I'm running this on Slackware 13.37, I've just updated to the latest stable 
version of GNUstep also.
Any help would be appreciated !

Thanks
Steven

#import <Foundation/Foundation.h>
#import <Foundation/NSDate.h>
#import <Foundation/NSDateFormatter.h>
int
main(int argc, const char *argv[]) {
  NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];


  NSDate *d;
  NSDateFormatter *df = [[NSDateFormatter alloc] init];
  [df setDateFormat:@"yyyyMMdd"];
  d = [df dateFromString:@"20130215"];

  NSLog(@"d is: %@", d);

  [pool release];

  return 0;
}


reply via email to

[Prev in Thread] Current Thread [Next in Thread]