Hello I am trying to convert декабрь/12/1982 date into NSDate but it will return nil value. Following is my code.
NSDateFormatter *formatter = [[NSDateFormatter alloc]init];
[formatter setLocale:[NSLocale localeWithLocaleIdentifier:@"ru_RU"]];
[formatter setDateFormat:@"MM/dd/yyyy"];
NSDate *dateCreated = [formatter dateFromString:strSelectedDate];
My application has multi language support. Thanks in advance.