获取当前的时间 NSDate *date = [NSDate date]; NSLog(@"%@",date);//Thu Sep 13 16:16:13 2017 在当前时间上再加5秒...NSDate *date1 = [date dateByAddingTimeInterval:5]; NSLog(@"%@",date1);//Thu Sep 13 16:16:23...lu",seconds);//8小时 时间格式化 yyyy 年 MM 月 dd 日 HH 24小时 hh 12 小时 mm 分钟 ss 秒 Z 时区 NSDate...---> NSString NSDate *now = [NSDate date]; NSDateFormatter *formatter = [[NSDateFormatter...= [formatter stringFromDate:now]; NSLog(@"%@",dateStr);//2018-09-13 17:17:33 GMT+8 NSString---> NSDate
获取当前日期时间的代码如下: NSDate *dateToDay = [NSDate date]; NSDateFormatter *df = [[NSDateFormatter alloc..."]; [df setLocale:local]; NSString *myDataString = @"2009-09-15 18:30:00"; 从字符串生成日期对象的代码如下: NSDate...Invalid enum value returned."); break; } 注意:掌握NSDate和NSString相互之间的转换。...完整代码如下: #import int main(int argc, const char * argv[]) { NSDate...:@"en_US"]; [df setLocale:local]; NSString *myDataString = @"2009-09-15 18:30:00"; NSDate
NSDate *currentDate = [NSDate date]; NSCalendar* calendar = [NSCalendar currentCalendar]; NSDateComponents
NSDate * date = [NSDate date]; NSLog(@"date:%@", date); NSDateFormatter * outputFormatter = [[NSDateFormatter...NSTimeZone * zone = [NSTimeZone systemTimeZone]; NSInteger interval = [zone secondsFromGMTForDate:date]; NSDate...* nowDate = [date dateByAddingTimeInterval:interval]; NSLog(@"nowDate:%@", nowDate); //所以,NSDate转字符串和直接使用...NSDate的时候一定要注意,转字符串的时候不用处理差8个小时问题,直接用NSDate的时候需要处理相差8个小时的问题 NSDateFormatter * outputFormatter1 = [[NSDateFormatter...outputFormatter1 stringFromDate:nowDate]; NSLog(@"outputNowDate:%@", outputNowDate); //使用outputFormatter输出的时候总是和NSDate
下面我们看一下时间NSDate的基本使用方法。 1.比较大小 我比较擅长.NET,我们知道C#里面DateTime类型可以使用">""<""="来直接判断。...但是在Swift里<em>NSDate</em>是不支持这种比较的方式的。我们需要使用<em>NSDate</em>.Compare方法来比较。<em>NSDate</em>.Compare返回一个枚举NSComparisonResult。...NSComparisonResult.OrderedAscending//时间升序 NSComparisonResult.OrderedSame//相同 NSComparisonResult.OrderedDescending//时间倒序 其中<em>NSDate</em>...NSDateComponents对象表示一段时间,且使用我们更易于读取的方式来描述: func diff(from:<em>NSDate</em>,to:<em>NSDate</em>)->NSDateComponents{...以上差不多就是<em>NSDate</em>在Swift里最基本的用法。
创建当前时间 NSDate *date = [NSDate date]; 从现在开始的24小时 NSTimeInterval a_day = 24*60*60; NSDate...*tomorrow = [NSDate dateWithTimeIntervalSinceNow:a_day]; 根据已有日期创建日期 NSTimeInterval a_day = 24*60...*60; NSDate *date = [NSDate date]; NSDate *tomorrow = [date addTimeInterval: date]; 日期比较...BOOL isEqual = [date isEqualToDate:tomorrow]; f(isEqual){ NSLog(@"equal"); //获取较早的日期 NSDate...earlier_date = [tomorrow earlierDate:date]; NSLog(@"earlierDate = %@",earlierDate); //较晚的日期 NSDate
16:00:00 +0000 (lldb) po [self.startTime beginningOfDay] 2021-10-28 16:00:00 +0000 //获取一天的开始时间 - (NSDate...//获取一天的开始时间,同时消除夏令时时差 - (NSDate *)benginningOfDayWithDayLinght { NSCalendar *calendar = [NSCalendar...NSTimeInterval sinceTime = [calendar dateFromComponents:components].timeIntervalSince1970; NSDate...*resultDate = [NSDate dateWithTimeIntervalSince1970:sinceTime+daylightSavingInterval]; return resultDate
当前时间创建NSDate NSDate *myDate = [NSDate date]; NSLog(@"myDate = %@",myDate); 2....从现在开始的24小时 NSTimeInterval secondsPerDay = 24*60*60; NSDate *tomorrow = [NSDate dateWithTimeIntervalSinceNow...根据已有日期创建日期 NSTimeInterval secondsPerDay1 = 24*60*60; NSDate *now = [NSDate date]; NSDate...获取较晚的日期 NSDate *laterDate = [yesterDay laterDate:now]; NSLog(@"laterDate = %@",laterDate); 7...== %@",date); return date; } - (int)compareOneDay:(NSDate *)oneDay withAnotherDay:(NSDate
NSNumber *timer = [NSNumber numberWithInteger:time]; NSTimeInterval interval = [timer doubleValue]; NSDate...*date = [NSDate dateWithTimeIntervalSince1970:interval]; //设置日期格式 NSDateFormatter *formatter = [[NSDateFormatter
时间日期处理 1.NSDateFormatter 日期格式化 ①可以把NSString 类型转为 NSDate类型 举例 把 "2015-08-23 19:46:14" 转为NSDate类型 NSDateFormatter...*createDate = [formatter dateFromString:@"2015-08-23 19:46:14"]; ②把 NSDate 类型转为 NSString 类型 举例把当前时间...*date = [NSDate date]; NSString *string = [formatter stringFromDate:date]; 2.NSDate // 获得当前时间...NSDate *nowDate = [NSDate date]; //从beforeDate -> nowDate的时间间隔,秒 NSTimeInterval interval = [...nowDate timeIntervalSinceDate:beforeDate]; // 时间戳 // "time": "6456546455435",到1970年的时间 [NSDate
//当前日前日期 NSDate *today = [NSDate date]; //时区 NSTimeZone *zone = [NSTimeZone systemTimeZone...today]; //今天+8小时(中国上海时区) today = [today dateByAddingTimeInterval: _interval]; //获取明天日期 NSDate...*tomorrowDate = [[NSDate alloc]initWithTimeInterval:24 * 60 * 60 sinceDate:[NSDate date]]; //日历 ... fromDate:tomorrowDate]; //获取当前星期几 NSInteger weekday = [comps weekday]; //将NSString类型转换成NSDate... NSDate *serverDate = [dateFomatter dateFromString:serverTimeStr]; NSDate *createDate = [
NSDate NSDate用来表示公历的GMT时间(格林威治时间)。...is %@",date1); NSDate *date2 = [[NSDate alloc] initWithTimeInterval:10 sinceDate:date1]; //NSDate...:(NSDate *)anotherDate 比较两个NSDate对象,返回较早/较晚的时间点,并以新NSDate对象的形式返回 NSDate *date = [NSDate dateWithTimeIntervalSince1970...NSDate *date = [NSDate dateWithTimeIntervalSince1970:0]; NSDate *date2 = [NSDate dateWithTimeInterval...*calendar = [NSCalendar currentCalendar]; NSDate *date = [NSDate date]; NSDate *date2 = [NSDate dateWithTimeInterval
以毫秒为整数值的时间戳转换 时间戳转化为时间NSDate - (NSString *)timeWithTimeIntervalString:(NSString *)timeString { //...NSDateFormatterShortStyle]; [formatter setDateFormat:@"yyyy年MM月dd日 HH:mm"]; // 毫秒值转化为秒 NSDate...* date = [NSDate dateWithTimeIntervalSince1970:[timeString doubleValue]/ 1000.0]; NSString* dateString...= [formatter stringFromDate:date]; return dateString; } 时间转化为时间戳 // 当前时间 NSDate* date...= [NSDate dateWithTimeIntervalSinceNow:0]; NSTimeInterval a=[date timeIntervalSince1970]*1000; //
// 获取从今往后一个月的 NSPredicate*predicate = [self.eventStore predicateForEventsWithStartDate:[NSDate...*)startDate endDate:(NSDate *)endDate calendars:(nullable NSArray *)calendars; // 提醒相关...*)startDate ending:(nullable NSDate *)endDate calendars:(nullable NSArray *)calendars;...- (NSPredicate *)predicateForCompletedRemindersWithCompletionDateStarting:(nullable NSDate *)startDate...*lastModifiedDate; // 事件创建的时间 @property(nonatomic, readonly, nullable, strong) NSDate *creationDate;
计算代码的执行效率可以使用的API有: NSDate CFAbsoluteTimeGetCurrent CACurrentMediaTime dispatch_benchmark NSDate 看到NSDate...利用NSDate 来计算运行效率:代码段运行前记录一次时间,运行后记录一次,然后比较时间差。 时间的单位是 秒。...NSDate 来自Foundation框架,只需要#import ,就可以使用了。...NSDate 和 CFAbsoluteTimeGetCurrent 是通过ReferenceDate来计算相差的秒值。与服务器的时间有关系。...3、时间的精度不同 NSDate、CFAbsoluteTimeGetCurrent、CACurrentMediaTime计算出来的时间精度都是秒。
代码如下: /* dateDiff 方法实现 */ +(NSDateComponents *) dateDiff:(NSDate *) fromDate toDate:(NSDate *) toDate...options:0]; return compInfo; } /* dateDiff 调用示例 */ -(void) demo { NSDate...*date1 = [[NSDate alloc] init]; NSDate *date2 = [[NSDate alloc] initWithTimeIntervalSinceNow:86400
对象代表日期和时间,OC既提供了类方法来创建NSDate对象,也提供了大量以init开头的方法来初始化NSDate对象。...7 NSDate* date1 = [NSDate date]; 8 NSLog(@"%@" , date1); 9 // 获取从当前时间开始,一天之后的日期...10 NSDate* date2 = [[NSDate alloc] 11 initWithTimeIntervalSinceNow:3600*24]; 12...3、如果需要将NSDate转化为NSString,则调用NSDateFormatter的stringFromDate:方法执行格式化即可;如果需要将NSString转化为NSDate,则调用NSDateFormatter...对象,并用setter方法对各个字段进行赋值 调用NSCalendar的dateFromComponents:方法初始化NSDate对象,该方法返回一个NSDate对象 1 #import <Foundation
通常情况下,我们使用下面的语法声明数组: NSArray *dates; 通过在类型后面添加 ,我们可以告诉编译器:这个数组只接受 NSDate 类型的实例。...NSArray *dates; 下面,我们通过实例验证一下它的作用: NSArray *dates; NSString *str = dates[2]; 当我们编译上述代码时...,clang 在语法校验时会自动提示 ⚠️ 信息:NSDate 与 NSString 不兼容 ?...image-20210105220623395 解决该 ⚠️ 的方案也很简单,把 NSString 换成 NSDate 即可。...NSDate *date = dates[2]; 如何让自己的类支持 轻量泛型?
- (NSInteger)getDifferenceByDate:(NSString *)date { //获得当前时间 NSDate *now = [NSDate date];...NSDateFormatter alloc] init]; //设定时间格式 [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"]; NSDate...gregorian components:unitFlags fromDate:oldDate toDate:now options:0]; return [comps day]; } 获取当前时间: NSDate...*date = [NSDate date]; NSLog(@"origin = %@",date); NSDateFormatter *dateFormatter = [[NSDateFormatter
领取专属 10元无门槛券
手把手带您无忧上云