Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用开关禁用UIDatePicker小时和小步舞曲字段?所以让我们说..
UIDatePicker
if(hourSwitch.on){ // turn hh mm on }else{ // turn hh and mm off }
是的,您可以更改日期选择器模式:
if(hourSwitch.on){ // turn hh mm on yourdatePicker.datePickerMode = UIDatePickerModeDateAndTime; }else{ // turn hh and mm off yourdatePicker.datePickerMode = UIDatePickerModeDate; }
希望它可以帮助你。