Tim Windsor Brown
Tim Windsor Brown

Reputation: 4089

Custom font in iOS7 UIDatePicker

According to previously asked questions (this one for example), there is no way of adjusting the font attributes of a UIDatePicker. Has anyone discovered in iOS7 any new ways to do this?

I would otherwise recreate the UIDatePicker with a UIPickerView.

Thanks!

Upvotes: 3

Views: 6173

Answers (1)

Michael Dautermann
Michael Dautermann

Reputation: 89509

According to Apple's UIKit User Interface Catalog, we are not allowed to customize date pickers.

But all is not lost, I've seen other StackOverflow answers for similar questions that suggest making a fake UIDatePicker using UIPickerView and customizing that.

Upvotes: 3

Related Questions