ios开发中时间转换的方法集锦
2019/7/9 23:29:02
本文主要是介绍ios开发中时间转换的方法集锦,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
在开发iOS程序时,有时候需要将时间格式调整成自己希望的格式,这个时候我们可以用NSDateFormatter类来处理。
例如:
//实例化一个NSDateFormatter对象
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
//设定时间格式,这里可以设置成自己需要的格式
[dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
//用[NSDate date]可以获取系统当前时间
NSString *currentDateStr = [dateFormatter stringFromDate:[NSDate date]];
//输出格式为:2010-10-27 10:22:13
NSLog(@"%@",currentDateStr);
//alloc后对不使用的对象别忘了release
[dateFormatter release];
ios将时间戳转换成时间字符串类的方法代码
//将date时间戳转变成时间字符串
//@paaram date 用于转换的时间
//@param formatString 时间格式(yyyy-MM-dd HH:mm:ss)
//@return NSString 返回字字符如(2012-8-8 11:11:11)
+ (NSString *)getDateStringWithDate:(NSDate *)date
DateFormat:(NSString *)formatString
{
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateFormat:formatString];
NSString *dateString = [dateFormat stringFromDate:date];
NSLog(@"date: %@", dateString);
[dateFormat release];
return dateString;
}
以上所述就是本文的全部内容了,希望大家能够喜欢。
这篇关于ios开发中时间转换的方法集锦的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-12Axios库资料:新手入门必读教程
- 2024-11-11Axios库项目实战:新手入门教程
- 2024-09-29Axios库教程:初学者必备指南
- 2024-08-29Axios库资料:新手入门指南与基本使用教程
- 2024-03-14system bios shadowed
- 2024-03-14gabios
- 2024-02-07iOS应用提交上架的最新流程
- 2024-02-06打包 iOS 的 IPA 文件
- 2023-12-07uniapp打包iOS应用并通过审核:代码混淆的终极解决方案 ?
- 2023-11-25uniapp IOS从打包到上架流程(详细简单) 原创