以时间格式时移作为输入,平移后的实时作为输出
请问,我该如何:
- 输入(不使用时间选择器)时间偏移,例如 02:21:22,
- 然后显示添加了时间偏移的时钟。
因此,如果当前时间为 13:20:31,则显示的时间将为 15:41:53 ...
Please, how could I:
- to input (not using timepicker) a time shift, for example as 02:21:22
- then to display a clock with the time shift added to it.
So if the time is currently 13:20:31 the displayed time would be 15:41:53 ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要一些类似
Calendar< /code>
用于时间添加。示例:
对于输入时间,一种可能是将其作为文本输入,然后使用
DateFormatter
获取日期
来自它。例子:You will probably want some thing like the
Calendar
for the time addition. Example:As for entering the time, one possibility is to enter it as a text, and then use a
DateFormatter
to get aDate
from it. Example: