标签:
怎么将日期封装并返回多个参
NSComparisonResult的取值
NSOrderedAscending = -1L, 升序,左边 < 右边
NSOrderedSame, 相同
NSOrderedDescending,降序,左边 > 右边
一、NSDateFormatter的作用
1.NSString * -> NSDate * [fmt stringFromDate:@""]
2.NSDate * -> NSString * [fmt DateFromString:@""]
//获取日期的年月日
NSCalendarUnit unit = NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay;
IOS8之前用NSDateComponents *cmps = [calendar components:unit fromDate:date]
IOS8之后才能用,只能提取一个 NSInteger year = [calendar component:NSCalendarUnitYear fromDate:date];
//判断版本号
1. [UIDevice currentDevice].systemVersion :系统版本
2. if ([@"" respondsToSelector:@selector(sizeWithAttributes:)]) {
NSLog(@"大于等于7.0"); :调用7.0以上版本的系统方法,可以调用就在7.0以上
标签:
原文地址:http://www.cnblogs.com/xieyunqq/p/5246247.html