I am trying to indicate the months names , but my code just show me the number of months like : 3 , 4 , 12
[dateFormatter setDateFormat:@"MM"];
NSString *currMonth = [dateFormatter stringFromDate:today];
month.text = [NSString stringWithFormat:@"%@",currMonth];