Skip to content

Instantly share code, notes, and snippets.

@fcaldarelli
Created March 19, 2019 10:17
Show Gist options
  • Save fcaldarelli/7044a6e1cf41daeffc28bc95abc15db2 to your computer and use it in GitHub Desktop.
Save fcaldarelli/7044a6e1cf41daeffc28bc95abc15db2 to your computer and use it in GitHub Desktop.
// Inizializza il selettore della data di nascita
dateBirthDatePicker = UIDatePicker()
dateBirthDatePicker?.datePickerMode = .date
txtDateBirth.inputView = dateBirthDatePicker
let dateBirthAccessory = UIToolbar()
dateBirthAccessory.sizeToFit()
dateBirthAccessory.items = [ UIBarButtonItem(title: "Done", style: .done, target: self, action: #selector(onDateBirthDateBtnDoneTapped)) ]
txtDateBirth.inputAccessoryView = dateBirthAccessory
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment