The string which comes from my data source is formatted like this:
2011-04-11 23:12:05
// dateString comes from my data
// set norwegian locale
dateFormatter.locale=[[NSLocale alloc] initWithLocaleIdentifier:@"no_NO"];;
dateFormatter.dateFormat=@"MMMM";
NSString * monthString = [[dateFormatter stringFromDate:date] capitalizedString];
NSLog(@"month: %@", monthString);
This is a norwegian example. With your language it should be "se_SE"