I want to remove year from iOS date picker. Need to use in iPhone app.

I want to remove year from iOS date picker. Need to use in iPhone app.

This is down to the users phone localization settings... You'll need to create some sort of custom UIPicker if you want to make it the same for all.
You can't use the UIDatePicker because The UIDatePicker only supports the following modes
typedef enum {
UIDatePickerModeTime,
UIDatePickerModeDate,
UIDatePickerModeDateAndTime,
UIDatePickerModeCountDownTimer
} UIDatePickerMode;
Create a view and controller that implement the UIPickerViewDelegate and create your own - you may find a little more detail here