For this you can make your custom picker.
Or you want to format the date then use this code..
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateFormat:@"MM-dd-yy"];
NSString *date = [dateFormat stringFromDate:datePicker.date];
NSLog(@"date is >>> , %@",date);