Advertisement
Guest User

Różnica w standaloneMonthSymbols i monthSymbols

a guest
May 19th, 2011
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. #import <Foundation/Foundation.h>
  3.  
  4. int main (int argc, const char * argv[])
  5. {
  6.  
  7.     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
  8.  
  9.     NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
  10.        
  11.  
  12.     NSLocale *plLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"pl_PL"];
  13.     [dateFormatter setLocale:plLocale];
  14.    
  15.     NSLog(@"LISTA MIESIECY W standaloneMonthSymbols: %@",
  16.           [dateFormatter standaloneMonthSymbols]);
  17.     NSLog(@"LISTA MIESIECY W monthSymbols: %@",
  18.           [dateFormatter monthSymbols]);
  19.    
  20.  
  21.     [pool drain];
  22.     return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement