swift 带有日期选择器的UITextField
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 带有日期选择器的UITextField相关的知识,希望对你有一定的参考价值。
// 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
以上是关于swift 带有日期选择器的UITextField的主要内容,如果未能解决你的问题,请参考以下文章
带有引导日期选择器的 Laravel 4
Swift:使用 UIDatePicker 作为 UITextField inputView 不更新
UITextField 上的 UIDatePicker 问题
在 UITextField swift 3.0 中使用数字键盘以 dd-MM-yyyy 格式输入日期
带有日期选择器的 Android 微调器,例如 Google 日历应用
Swift - 带有Objective-C选择器'*'的方法'*()'与具有相同Objective-C选择器的超类'UIView'中的'*'的getter冲突