UIDate 选择器设置当前时间与双倍时间的差值
我有 UIDatepicker 设置为时间模式。 我想要求用户设置他开始某些操作的时间,并且我想获得与当前时间的差值双倍。 如果有人知道请帮帮我:-)
tnx!
i have UIDatepicker that set to time mode.
i want to ask the user to set the time that he began some action, and i want to get the Difference from the Current time To Double.
please guys if someone knows please help me out :-)
tnx!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UIDatePicker
为您提供一个(NSDate *)date
,它可用于计算与[date timeIntervalSinceNow]
的时间差,后者返回一个 < code>NSTimeInterval 实际上是以秒为单位的浮点数。UIDatePicker
gives you a(NSDate *)date
, which can be used to compute a time difference with[date timeIntervalSinceNow]
, which returns aNSTimeInterval
which is actually a float in seconds.