获取当前时间加八天

    NSDate *nextDay = [NSDate dateWithTimeInterval:24*60*60*8 sinceDate:[NSDate date]];

    //实例化一个NSDateFormatter对象

    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];

    //设定时间格式,这里可以设置成自己需要的格式

    [dateFormattersetDateFormat:@"yyyy-MM-dd HH:mm:ss"];

    //用[NSDate date]可以获取系统当前时间

    NSString* currentDateStr = [dateFormatterstringFromDate:nextDay];

   NSLog(@"当前时间加八天  %@",currentDateStr);

你可能感兴趣的:(获取当前时间加八天)