在 Objective-C 中获取下周六的日期?
在 iOS 的 Objective-C 中,如何获取今天之后第一个星期六的日期?
How would you get the date of the the first saturday that occurs after today in Objective-C for iOS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
[NSDate dateWithNaturalLanguageString: @"next Saturday"]
编辑:从 OS X 10.9 和 iOS 8 开始,您可以执行以下操作:
[NSDate dateWithNaturalLanguageString: @"next Saturday"]
Edit: Starting in OS X 10.9 and iOS 8, you can do this:
这将指导您完成操作日历日期的过程:
日历计算
This will guide you through the process of manipulating calendar dates:
Calendrical Calculations