Use this to format the date:
NSLocale *hebrew = [[NSLocale alloc] initWithLocaleIdentifier:@"he_IL"];
NSDateFormatter *format = [[NSDateFormatter alloc] init];
format.locale = hebrew;
[format setDateFormat:@"MMM dd, yyyy HH:mm"];
NSDate *now = [NSDate date];
NSString *today = [format stringFromDate:now];
UILabel *lbl = [[UILabel alloc] initWithFrame:CGRectMake(30, 40, 240, 30)];
lbl.text = today;
NSLog(@"today: %@", today);