0
をクリックしたときに、私は迅速かつ次のコードスウィフトオープン日付ピッカーと私はラベル
override func viewDidLoad() {
//<#code#>
dateSet.userInteractionEnabled = true
let aSelector : Selector = "lblTapped"
let tapGesture = UITapGestureRecognizer(target: self, action: aSelector)
tapGesture.numberOfTapsRequired = 1
dateSet.addGestureRecognizer(tapGesture)
}
func lblTapped(){
// need to add datapicker UIView
}