简体   繁体   中英

How to transfer NSDate to offset time format in iOS?

如何使用目标 C 在 iOS 中将NSDate为偏移时间格式 (2015-08-05 16:33:29 +02:00)?

Try:

    NSDate *date = [NSDate date];
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];
    [dateFormatter setDateFormat:@"yyyy'-'MM'-'dd HH':'mm':'ss ZZZ"];
    NSLog(@"%@",[dateFormatter stringFromDate:date ]);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM