如何从日期选择器中提取日期并显示所选日期?
答案 0 :(得分:5)
您需要为DatePicker设置IBOutLet(作为datePicker)。 现在代码为:
NSDate *date = self.datePicker.date;
答案 1 :(得分:0)
http://howtomakeiphoneapps.com/2009/10/how-to-use-uidatepicker-from-uikit-in-iphone-programming/
好好阅读你的问题
答案 2 :(得分:0)
@IBOutlet weak var selectedDate: UIDatePicker!
var date = self.selectedDate.date
println(date)