OC - 时间日期类NSDate
OC - 时间日期类NSDate //NSDate 时间日期类 NSDate 二进制数据流 { //1.获取当前时间 零时区的时间 //显示的是格林尼治的时间: 年-月-日 时:分:秒:+时区 NSDate *date = [NSDate date]; NSLog(@"当前零时区时间 %@", date); //2.获得本地时间 东八区 晚八个小时 以秒计时 NSDate *date1 = [NSDate dateWithTimeIntervalSinceNow:8 * 60 * 60]; NSLog(@"今天此时的时间 %@",date1); //3.昨天此时的时间 NSDate *yesterdayDate = [NSDate dateWithTimeIntervalSinceNow:(-24 + 8) * 60 * 60]; NSLog(@"昨天此时的时间 %@",yesterdayDate); //4.明天此刻 NSDate *tomorrowDate = [NSDate dateWithTimeInterval:24 * 60 * 60 sinceDate:date1]; NSLog(@"明天此刻的时间 %@",tomorrowDate); //n天此刻 NSDate *tomorrowDate7 = [NSDate