iOS关于时间转换的几个方法

1、NSString转NSDate

//需要转换的字符串
NSString *dateString = @"2015-06-26 08:08:08";
//设置转换格式
NSDateFormatter *formatter = [[NSDateFormatter alloc] init] ;
[formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
//NSString转NSDate
NSDate *date=[formatter dateFromString:dateString];
注意:
(1)NSDateFormatter常用的格式有:

yyyy-MM-dd HH:mm:ss.SSS
yyyy-MM-dd HH:mm:ss
yyyy-MM-dd
MM dd yyyy
(2)NSDateFormatter格式化参数如下:

G: 公元时代,例如AD公元
yy: 年的后2位
yyyy: 完整年
MM: 月,显示为1-12
MMM: 月,显示为英文月份简写,如 Jan
MMMM: 月,显示为英文月份全称,如 Janualy
dd: 日,2位数表示,如02
d: 日,1-2位显示,如 2
EEE: 简写星期几,如Sun
EEEE: 全写星期几,如Sunday
aa: 上下午,AM/PM
H: 时,24小时制,0-23
K:时,12小时制,0-11
m: 分,1-2位
mm: 分,2位
s: 秒,1-2位
ss: 秒,2位
S: 毫秒
2、NSDate转NSString

//获取系统当前时间
NSDate *currentDate = [NSDate date];
//用于格式化NSDate对象
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
//设置格式:zzz表示时区
[dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss zzz"];
//NSDate转NSString
NSString *currentDateString = [dateFormatter stringFromDate:currentDate];
//输出currentDateString
NSLog(@"%@",currentDateString);
3、将时间戳转换为NSDate类型

-(NSDate *)getDateTimeFromMilliSeconds:(long long) miliSeconds{
NSTimeInterval tempMilli = miliSeconds;
//时间戳转化为时间后会差8个时区,需要将tempMilli-28800之后再转化为毫秒
NSTimeInterval seconds = tempMilli-28800i/1000.0;//这里的.0一定要加上,不然除下来的数据会被截断导致时间不一致
NSLog(@"传入的时间戳=%f",seconds);
return [NSDate dateWithTimeIntervalSince1970:seconds];
}
4、将NSDate类型的时间转换为时间戳,从1970/1/1开始

-(long long)getDateTimeTOMilliSeconds:(NSDate *)date time{
NSTimeInterval interval = [datetime timeIntervalSince1970];

NSLog(@"转换的时间戳=%f",interval);

long long totalMilliseconds = interval*1000 ;

NSLog(@"totalMilliseconds=%llu",totalMilliseconds);

return totalMilliseconds;
转换工具类的方法:

//NSDate转NSString

  • (NSString *)stringFromDate:(NSDate *)date
    {
    //获取系统当前时间
    NSDate *currentDate = [NSDate date];
    //用于格式化NSDate对象
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    //设置格式:zzz表示时区
    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss zzz"];
    //NSDate转NSString
    NSString *currentDateString = [dateFormatter stringFromDate:currentDate];
    //输出currentDateString
    NSLog(@"%@",currentDateString);
    return currentDateString;
    }

//NSString转NSDate

  • (NSDate *)dateFromString:(NSString *)string
    {
    //需要转换的字符串
    NSString *dateString = @"2015-06-26 08:08:08";
    //设置转换格式
    NSDateFormatter *formatter = [[NSDateFormatter alloc] init] ;
    [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    //NSString转NSDate
    NSDate *date=[formatter dateFromString:dateString];
    return date;
    }

你可能感兴趣的:(iOS关于时间转换的几个方法)