博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NSDateFormatter 真机调试
阅读量:6267 次
发布时间:2019-06-22

本文共 430 字,大约阅读时间需要 1 分钟。

+ (NSDate *) dateFromFomate:(NSString *)datestring formate:(NSString*)formate {

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

  // 真机必须指定local否则返回null    

    NSLocale *locale = [[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"] autorelease];

    [formatter setLocale:locale];

    

    [formatter setDateFormat:formate];

    NSDate *date = [formatter dateFromString:datestring];

    return date;

}

转载于:https://my.oschina.net/wangdk/blog/197320

你可能感兴趣的文章
服务器错误码
查看>>
javascript中的面向对象
查看>>
Splunk作为日志分析平台与Ossec进行联动
查看>>
yaffs文件系统
查看>>
Mysql存储过程
查看>>
NC营改增
查看>>
Lua
查看>>
Mysql备份系列(3)--innobackupex备份mysql大数据(全量+增量)操作记录
查看>>
postgresql 获取刚刚插入的数据主键id
查看>>
C# Activex开发、打包、签名、发布 C# Activex开发、打包、签名、发布 [转]
查看>>
05-Vue入门系列之Vue实例详解与生命周期
查看>>
验证码展示
查看>>
浅谈大型web系统架构
查看>>
淘宝大秒系统设计详解
查看>>
linux如何修改登录用户密码
查看>>
Kali Linux 2017中Scapy运行bug解决
查看>>
Python监控进程性能数据并画图保存为PDF文档
查看>>
Android属性动画完全解析(下),Interpolator和ViewPropertyAnimator的用法
查看>>
Mac OS 10.10.3下Apache + mod_wsgi配置【一】
查看>>
Hibernate基于注解的双向one-to-many映射关系的实现
查看>>