14.NSNumber、NSValue、NSDate
2019-01-05 本文已影响0人
Maserati丶
参考自xx_cc的简书文章
NSNumber
因为NSArray和NSDictionary都无法存储基本数据类型,所以NSNumber就是用来将基本数据类型转化为对象,然后存入数组或者字典中的。
- 基本数据类型转化为NSNumber对象
+ (NSNumber *)numberWithChar:(char)value;
+ (NSNumber *)numberWithUnsignedChar:(unsigned char)value;
+ (NSNumber *)numberWithShort:(short)value;
+ (NSNumber *)numberWithUnsignedShort:(unsigned short)value;
+ (NSNumber *)numberWithInt:(int)value;
+ (NSNumber *)numberWithUnsignedInt:(unsigned int)value;
+ (NSNumber *)numberWithLong:(long)value;
+ (NSNumber *)numberWithUnsignedLong:(unsigned long)value;
+ (NSNumber *)numberWithLongLong:(long long)value;
+ (NSNumber *)numberWithUnsignedLongLong:(unsigned long long)value;
+ (NSNumber *)numberWithFloat:(float)value;
+ (NSNumber *)numberWithDouble:(double)value;
+ (NSNumber *)numberWithBool:(BOOL)value;
+ (NSNumber *)numberWithInteger:(NSInteger)value;
+ (NSNumber *)numberWithUnsignedInteger:(NSUInteger)value;
也可以使用@直接向基本数据类型封装为对象
@10 代表是1个NSNumber对象,这个对象中包装的是整形的10。如果后面的数据是1个变量,那么这个变量就必须要使用小括弧括起来
- NSNumber对象转化为基本数据类型
@property (readonly) char charValue;
@property (readonly) unsigned char unsignedCharValue;
@property (readonly) short shortValue;
@property (readonly) unsigned short unsignedShortValue;
@property (readonly) int intValue;
@property (readonly) unsigned int unsignedIntValue;
@property (readonly) long longValue;
@property (readonly) unsigned long unsignedLongValue;
@property (readonly) long long longLongValue;
@property (readonly) unsigned long long unsignedLongLongValue;
@property (readonly) float floatValue;
@property (readonly) double doubleValue;
@property (readonly) BOOL boolValue;
@property (readonly) NSInteger integerValue;
@property (readonly) NSUInteger unsignedIntegerValue;
NSValue
NSRange、CGPoint、CGSize、CGRect这些结构体,他们的变量没有办法存储到集合之中,因此需要先将这些结构体变量存储到OC对象中,再将OC对象存储到集合之中,NSValue类的对象就是用来包装结构体变量的。
NSDate
获得当前时间,得到的是当前系统的格林威治时间,0时区的时间。
NSDate *date = [NSDate date]; // Sat Jan 5 16:56:27 2019
格式化输出日期
- 先创建一个NSDateFormatter对象
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
- 告诉这个日期格式化器对象需要的格式
formatter.dateFormat = @"yyyy年MM月dd日 HH点mm分ss秒";
- 使用日期格式化器,将指定的日期转换指定格式的字符串
NSString *str =[formatter stringFromDate:date];
注意: NSDate取到的时间是格林威治的时间,而NSDateFormatter转换成字符串以后,会自动转换为当前系统的时区的时间。
NSDate与字符串
- 将日期类型换换为字符串
- (NSString *)stringFromDate:(NSDate *)date;
- 将字符串转换为日期对象
- (NSDate *)dateFromString:(NSString *)string;
NSDate计算时间
- 在当前时间的基础之上,新增或减少指定的时间,得到的一个新的时间
+ (instancetype)dateWithTimeIntervalSinceNow:(NSTimeInterval)secs;
- 求两个时间之间的差
- (NSTimeInterval)timeIntervalSinceDate:(NSDate *)anotherDate;
- 得到NSDate中的年月日时分秒
NSDate *date = [NSDate date];
//1.创建1个日历对象. 调用类方法currentCalendar得到1个日历对象.
NSCalendar *calendar = [NSCalendar currentCalendar];
//2.指定日历对象取到日期的对象的那些部分. 是要取那1个时间对象的部分.
// 返回1个日期组件对象.这个对象中就有指定日期的指定部分.
NSDateComponents *com = [calendar components:NSCalendarUnitYear|NSCalendarUnitMonth|NSCalendarUnitDay fromDate:date];
NSLog(@"%ld-%ld-%ld",com.year,com.month,com.day);