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.
在我的应用程序中,我显示了一个日期选择器,但它也显示了以前的日期。
我只想显示今天日期的日期。
我从不想在日期选择器中显示今天的旧日期。
作为[NSDate date]或Date()返回当前的今天日期。
[NSDate date]
Date()
在 Objective-C 中
设置日期选择器的 minimumDate 属性:
datePicker.minimumDate = [NSDate date];
在 Swift 4.x 中
datePicker.minimumDate = Date()
(其中 datePicker 是对您的引用UIDatePicker)
UIDatePicker