I am trying to do something that would seem to be very simple and surprised to find no help or similar postings anywhere.
I want an NSDatePicker
, which I have setup in IB and bound to property, to display as full day and date like so:
Sunday, March 6 2016
I tried dropping a NSFormatter
on the Date Picker Cell, it seems to have no effect. No matter the settings, it always displays as:
3/12/2016
After a good deal of searching, I am about to set up a complex sequence of showing and hiding the control to use a NSTextfield
to display in its place. The idea being that the NSDatePicker
will become visible for editing only. I am sure that will work, it just seems so much trouble for no reason.
Is it possible to alter the formatting on the NSDatePicker
when it is not firstResponder
? Understanding that it needs to display in the default manner when editing, I just want it to display more like a label when not firstResponder
.