美文网首页
18 时间戳

18 时间戳

作者: _Nevermore | 来源:发表于2016-09-14 11:57 被阅读0次

    //获取当前时间戳
    - (NSString*)getCurrentTime {
    NSDate datenow = [NSDate date];
    NSTimeZone
    zone = [NSTimeZone timeZoneWithName:@"Asia/Beijing"];
    NSInteger interval = [zone secondsFromGMTForDate:datenow];
    NSDate *localeDate = [datenow dateByAddingTimeInterval:interval];
    NSString *timeSpp = [NSString stringWithFormat:@"%f", [localeDate timeIntervalSince1970]];
    return timeSpp;
    }

    相关文章

      网友评论

          本文标题:18 时间戳

          本文链接:https://www.haomeiwen.com/subject/dpevettx.html