作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
像这个NSString @"2013-09-02 0:00:00 +0800"
一样,我可以使用componentsSeparatedByCharactersInSet
方法将其拆分为NSArray。
数组看起来像这样
@["2013-09-02", "0:00:00", "+0800"].
NSString @"0:00:00"
拆分为NSArray看起来像
@[@"0", "00", "00"]
在Objective-C中使用`
componentsSeparatedByCharactersInSet
方法?
最佳答案
如果您想知道日期的小时,分钟和秒,则可能应该先使用NSDateFormatter,然后使用NSDateComponents提取这些属性。
NSString *yourString = @"2013-09-02 0:00:00 +0800";
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];
[dateFormatter setDateFormat:@"dd.MM.yyyy HH:mm:ss ZZZZ"];
NSDate *date = [dateFormatter dateFromString:yourString];
NSCalendar *calendar = [NSCalendar currentCalendar];
NSDateComponents *components = [calendar components:NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit fromDate:date];
NSInteger hour = components.hour;
NSInteger minute = components.minute;
NSInteger second = components.second;
//Alternative (NSArray can only contain objects - NSNumber vs. NSInteger)
NSArray *yourArray = @[[NSNumber numberWithInteger:components.hour],
[NSNumber numberWithInteger:components.minute],
[NSNumber numberWithInteger:components.second]];`
关于ios - 如何使用componentsSeparatedByCharactersInSet将HH:MM:SS拆分为NSArray,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18651585/
我是一名优秀的程序员,十分优秀!