今天有幸来到Imagination开发者大会。听了几位美国大佬和英国大佬的描述,顿时感觉他们的技术生活是非常不一样的。昨天还办了一张健康证,想去做餐饮,现在想想,还是坚持一条道好了。太多的精力分散,会让你学业不专的,以后做事情还是不要头脑一热了。。
言归正传。
NSDateFormatter是日期格式转换器。
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setTimeStyle:NSDateFormatterNoStyle];
[dateFormatter setDateStyle:NSDateFormatterMediumStyle];
NSDate *date = [NSDate dateWithTimeIntervalSinceReferenceDate:118800];
NSLocale *usLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"];
[dateFormatter setLocale:usLocale];
NSLog(@"Date for locale %@: %@",
[[dateFormatter locale] localeIdentifier], [dateFormatter stringFromDate:date]);
// Output:
// Date for locale en_US: Jan 2, 2001
NSLocale *frLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"fr_FR"];
[dateFormatter setLocale:frLocale];
NSLog(@"Date for locale %@: %@",
[[dateFormatter locale] localeIdentifier], [dateFormatter stringFromDate:date]);
// Output:
// Date for locale fr_FR: 2 janv. 2001
这个是苹果官网上给的简单demo。
在这里,可以定义时间显示的方法。
1.定义日期;
2.定义时间形式;
3.设置地区,比如中国,美国等;
NSDateFormatter是一种时间转换格式,你定义的什么形式,后期就会以什么样的形式显示出来。
现在自己有一个疑问,团购上的倒计时算法,是怎么写出来的?