菜鸟教程小白 发表于 2022-12-13 11:34:57

ios - 具有最短日期的 Swift Datepicker


                                            <p><p>大家早上好,</p>

<p>我有一个带有 ios 8 和 swift 的应用程序。
在 <code>UIDatepicker</code></p> 中有一个 <code>UIViewcontroller</code>

<p>我设置了一个最短日期。例如今天的日期:2 |五月 | 2015
使用此解决方案,应该无法设置过去的日期</p>

<p>但如果想将此日期设置为 15 |一月 | 2016 年
我一开始将日期设置为 15
比一个月到 1 月,但随后 <code>UIDatepicker</code> 回到最短日期 2015 年 5 月 2 日</p>

<p>是否有可能,将日期更改为 15 并将月份更改为一月,年份会自动更改为 2016 年?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>让你的 minimumDate 取消设置并尝试通过代码配置它...</p>

<p>试试这个:</p>

<pre><code>@IBAction func changeValue(sender: UIDatePicker)
{

    //Get time Now, and convert to a NSCalendar
    //Specify the minimun date if you want.
    let now = NSDate()
    let nowCalendar = NSCalendar.currentCalendar()
    let nowComponents = nowCalendar.components([.Day, .Month, .Year], fromDate: now)

    //Compare if date is lesser than now and then create a new date
    if nowCalendar.compareDate(sender.date, toDate: now, toUnitGranularity: [.Day, .Month, .Year]) == NSComparisonResult.OrderedAscending
    {

      let dateCalendar = NSCalendar.currentCalendar()
      let dateComponents = dateCalendar.components([.Day, .Month, .Year], fromDate: sender.date)

      dateComponents.year = nowComponents.year + 1
      let newDate = dateCalendar.dateFromComponents(dateComponents)
      sender.date = newDate!
    }

}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 具有最短日期的 Swift Datepicker,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32347688/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32347688/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 具有最短日期的 Swift Datepicker