如何检查用户选择的 NSDate 是否发生在几年前?
在我的应用程序中,我需要检查用户是否年满 18 岁。我为他提供 UIDatePickerView,然后他选择他的生日日期。我将它存储在 NSDate 字段中。 如何查看自己的生日是否已经过去18年了?
In my application I need to check if user turned 18. I provide UIDatePickerView for him and he selects his birthday date. I store it in the NSDate field.
How to check if 18 years has passed already since his birthday?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者正如 Jonathan Grynspan 指出的那样,这会更好:
现在有了 ARC,它可以(过于)简短:
or as Jonathan Grynspan pointed out, this would be better:
and now with ARC it can be (overly) brief:
应该这样做:
It should be done with something like that: