本文介绍了在UIDatePicker中将年数设置为最大值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我为我的应用程序使用了自定义uidatepicker,来自
问题是,最小年份是1900年(这很好),但最大年份是2013(哪个不好)。我怎么能改变这个,所以最大年份是无限的,或者甚至像2200年那样?
预先感谢!
解决方案
只需设置日期选择器的maximumDate属性即可:
datePicker。 maximumDate = [NSDate distantFuture];
I am using a custom uidatepicker for my app from
https://github.com/christopherney/FlatDatePicker
The Problem is, The minimum year is 1900 (Which is Fine) but the Maximum year is 2013 (Which is not fine). How could I change this so the Maximum year is infinite or even like the year 2200 or something?
Thanks in Advance!
解决方案
Simply set the maximumDate property of your date picker:
datePicker.maximumDate = [NSDate distantFuture];
这篇关于在UIDatePicker中将年数设置为最大值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!