I want the NSDatePicker cell to display "No date selected" when a user checks a checkbox - How can I do it, given that NSDatePicker accepts only NSDate as its value ?
Asked
Active
Viewed 84 times
1 Answers
0
You could place a label with the desired text in the same spot in the UI and tie the hidden property of the date picker to the checkbox backing BOOL and tie the hidden property of the label to the same BOOL with the NOT modifier.

pco494
- 371
- 1
- 9
-
Is there an alternative without adding a new control ? – prasha6 Jun 03 '16 at 00:28