I'm using UIDatePicker
in my app.
In iOS 5 I can change the width and height of the UIDatePicker
, however in iOS 6 I cannot. I am using the following code:
CGRect pickerFrame = CGRectMake(0, 90, 100, 100);
datePicker = [[UIDatePicker alloc] initWithFrame:pickerFrame];
datePicker.datePickerMode = UIDatePickerModeDate;
Is there anything extra I have to do for this?