I have a uidatepicker in Time Mode I want to add a component with string value into it I think I have 2 approaches:
1.using a custom pickerview
2.adding component to uidatepicker of my Mode Time(I don't know the possibility)
if it is possible to add a component to a ready built in uidatepicker of TimeMode I think it is awesome because it is more easy than building a customepickerview
Here is the TimeMode:
TimePicker.datePickerMode=UIDatePickerModeTime;
NSDateFormatter *outputFormatter = [[NSDateFormatter alloc] init];
[outputFormatter setDateFormat:@"HH:mm"];
is it possible to add a component here?or I should build a picker view from scratch? I know how to build from scratch I just want to know if it is possible to add a component to datepicker