iPhone 中的时间间隔为 30 分钟
我有 2 个 NSString ,分别是 startTime 和 endTime 。
开始时间 = 上午 10:00
endTime = 7:00 PM
现在我想以 30 分钟为间隔分割时间,这样我就可以获得这样的时间:
10:00 AM 上午 10:30 上午 11:00 上午 11:30 ......直到晚上 7:00。
我正在尝试这样的事情:
NSDateFormatter *timeFormat = [[NSDateFormatter alloc] init];
[timeFormat setDateFormat:@"HH:mm"];
NSDate* fromTime = [timeFormat dateFromString:startTime];
NSDate* toTime = [timeFormat dateFromString:endTime];
但我从 fromTime
= 1970-01-01 6:00:00 +0000 获取 startTime = 11:30
的值代码>
有人有任何想法,怎么做吗???
I have 2 NSString
say startTime
and endTime
.
startTime = 10:00 AM
endTime = 7:00 PM
Now i want to split the time in the interval of 30mins, so i can get time like this:
10:00 AM
10:30 AM
11:00 AM
11:30 AM
.......... till 7:00 PM.
i'm trying something like this :
NSDateFormatter *timeFormat = [[NSDateFormatter alloc] init];
[timeFormat setDateFormat:@"HH:mm"];
NSDate* fromTime = [timeFormat dateFromString:startTime];
NSDate* toTime = [timeFormat dateFromString:endTime];
But i'm getting the from fromTime
= 1970-01-01 6:00:00 +0000 for the value of startTime = 11:30
Anybody has any idea,how to do it???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试上面的代码。
Try the above code.
可能只是您在使用 dateFromString 时没有提供足够的信息。如果您只给出 hh:mm,则日期的其余部分可能会给您带来一些问题。
如果您只需要显示 30 分钟的间隔,并且只是在同一天的两个时间之间(并且日期并不重要),那么完全避免日期并仅手动计算两者之间的间隔可能是明智的。您可以轻松地将开始时间和结束时间解析为小时和分钟整数,然后从那里开始。
希望这有帮助。
It may just be that you're not giving enough information when using dateFromString. If you're only giving the hh:mm, the rest of the date could cause several issues for you.
If you only need to show intervals of 30 minutes, and it's simply between two times in the same day (and dates don't matter), it would probably be wise to avoid dates altogether and just manually calculate the intervals between the two. You could easily parse the start time and end times into an hours and minutes integers, and then go from there.
Hope this helps.