E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
nsdate
NSDate
1.setDateFormatNSDateFormatter*dateFormatter=[[NSDateFormatteralloc]init];[dateFormattersetDateFormat:@"yyyy-MM-ddHH:mm:ss"];[dateFormattersetLocale:[NSLocalecurrentLocale]];NSString*time=[dateFormatt
寒雨晚风
·
2023-03-12 05:55
关于 iOS 开发中 Lock 的超详细分析
@protocolNSLocking-(void)lock;//上锁-(void)unlock;//解锁@end-(BOOL)tryLock;//尝试加锁-(BOOL)lockBeforeDate:(
NSDate
我不是杰迷
·
2023-03-12 05:16
Object C 数字、字符串、集合、字典、NSURL、
NSDate
数字intNSIntegerNSUInteger的区别1.这三个都是基本类型,声明的时候都不带*号2.int和后两者的区别是,用int声明的时候要考虑机型,在32位机里是int类型,在64位里就有可能是long型,而用后两者后,就不用考虑这个问题了,他们会自动判别3.NSUInteger是无符号的,即没有负数,NSInteger是有符号的。基本类型和NSNumber的区别1.NSNumber是一个
Yison_a169
·
2023-03-12 01:04
iOS ~ 时间和时间戳 互转,或使用NSCalendar类
1、获取当前时间//获取当前时间-(NSString*)currentDateStr{
NSDate
*currentDate=[NSDatedate];//获取当前时间,日期NSDateFormatter
阳光下的叶子呵
·
2023-03-11 14:41
TaggedPointer
从64bit开始,iOS引入了TaggedPointer技术,用于优化NSNumber、
NSDate
、NSString等小对象的存储在没有使用TaggedPointer之前,NSNumber等对象需要动态分配内存
痴人会说梦
·
2023-03-09 11:49
IOS时间的类的方法
/获取年月日对象+(NSDateComponents*)getDateComponents:(
NSDate
*)date{NSCalendar*calendar=[NSCalendarcurrentCalendar
真爱要有你才完美
·
2023-02-17 22:50
iOS时间戳转换遇到的坑
dateFormat=[[NSDateFormatteralloc]init];[dateFormatsetDateFormat:@"yyyy'-'MM'-'dd'T'HH':'mm':'ssZZZZ"];
NSDate
红色小星
·
2023-02-07 12:38
iOS15.4 12小时制下获取时间的问题
NSDate
*currentDate=[NSDatedate];NSDateFormatter*dateFormatter=[[NSDateFormatteralloc]init];[dateFormattersetDateFormat
被风吹乱的思念
·
2023-02-06 09:39
iOS PDF文件生成
1.把scrollView上面的内容生成PDF文件,代码如下:-(NSString*)createPDF{
NSDate
*printTime=[NSDatedate];NSString*fileName=
Snow_L
·
2023-02-05 17:08
Objective-C Unix时间戳转时间
这里用UnixT表示
NSDate
*date=[NSDatedateWithTimeIntervalSince1970:UnixT];NSDateFormatter*_formatter=[[NSDateFormatteralloc
WHFuture
·
2023-02-04 03:43
NSDate
的一些扩展
//从1970年开始到现在经过了多少秒+(NSString*)getTimeSp{NSString*time;
NSDate
*fromdate=[NSDatedate];time=[NSStringstringWithFormat
笑啥风云
·
2023-02-03 23:12
IOS 时间差计算
[[NSDateFormatteralloc]init];//设定时间格式,这里可以设置成自己需要的格式[dateFormatsetDateFormat:@"yyyy-MM-ddHH:mm:ss"];
NSDate
小明X
·
2023-02-02 09:59
iOS 时间对比,判断几分钟前、几小时前、昨天、本周几
需要传入的时间格式2017-06-1414:18:54*///和当前时间进行比较输出字符串为(刚刚几个小时前几天前)+(NSString*)inputTimeStr:(NSString*)timeStr{
NSDate
XWSxws
·
2023-02-01 04:08
2019-06-19计算年龄的方法
+(NSString*)dateToOld:(
NSDate
*)bornDate{//出生日期转换年月日NSDateComponents*components1=[[NSCalendarcurrentCalendar
执着的人请保持微笑
·
2023-01-31 12:05
iOS 时间日期总结
获取时间戳单位秒,保留六位有效数字,格式如:1574068247.545103
NSDate
*datenow=[NSDatedate];NSString*timeSp=[NSStringstringWithFormat
72行代码
·
2023-01-30 20:51
iOS 数组排序
Persion类,如下定义:@interfacePerson:NSObject@property(nonatomic,copy)NSString*name;@property(nonatomic,strong)
NSDate
witcheryboy
·
2023-01-27 23:47
iOS 获取时间字符串与时间戳
获取当前时间-(NSString*)currentDateTime{
NSDate
*currentDate=[NSDatedate];//获取当前时间,日期NSDateFormatter*dateFormatter
863cda997e42
·
2023-01-27 09:00
IOS 日期当月天数,周几,上个月下个月
//给一个日期获取这个月的天数-(NSInteger)numberOfDayInMonthWithDateStr:(
NSDate
*)dateStr{
NSDate
*date=dateStr;NSCalendar
鳄佛
·
2023-01-26 09:02
LKDBHelper实体对象映射数据库-第三方框架
学习地址https://www.w3school.com.cn/sql/sql_intro.asp全面支持NSArray,NSDictionary,ModelClass,NSNumber,NSString,
NSDate
杨继磊
·
2023-01-25 23:38
iOS内存管理Tagged Pointer使用原理详解
的原理MacOS分析如何判断TaggedPointerTaggedPointer注意点正文为了节省内存和提高执行效率,苹果在64bit程序中引入了TaggedPointer技术,用于优化NSNumber、
NSDate
·
2023-01-10 07:33
NSDate
、NSString转换
//获取本机时间
NSDate
*nowDate=[[NSDatealloc]init];//String->DateNSString*dateStr=@"2022-09-1300:00:00";NSDateFormatter
渡边君WM
·
2022-10-24 16:06
IOS- 时间格式转换问题(12小时和24小时的区别)
IOS时间格式区别问题:使用NSDateFormatter进行NSString和
NSDate
对象转换时,格式字符串中使用“hh”,在iOS设备日期与时间设置项中24小时制设置项处于关闭的设置下,小时大于
GY-93
·
2022-09-28 07:12
Objective-c
ios
objective-c
xcode
Objective-c基础:Foundation标准库
多行换行组合字符串分割字符串字符串去空格字符串替换删除替换某个区间内的内容基本数据类型转换成字符串NSArray用法可变数组枚举类型使用NSDictionary字典NSFileManager:操作文件/文件夹默认
NSDate
码农飞飞
·
2022-09-26 17:38
移动端
objective-c
ios
xcode
小码哥底层原理笔记:内存管理
86EE-D03A79E39FB6.png注:只要是static修饰的变量就相当于是全局变量,整个项目就只有一份内存地址TaggedPoint技术从64bit开始,iOS引入了TaggedPoint技术,用于优化NSNumber、
NSDate
chilim
·
2022-09-08 15:57
比较2个时间点 哪个更早
NSDateFormatter*dateformater=[[NSDateFormatteralloc]init];[dateformatersetDateFormat:@"yyyy-MM-dd"];
NSDate
xyZHua
·
2022-09-06 14:19
iOS中 Tagged Pointer 技术
前言:从64位开始,iOS引入了TaggedPointer技术,用于优化NSNumber、
NSDate
、NSString等小对象的存储。
任淏
·
2022-07-27 14:00
iOS15.4 NSDateformatter 12小时制日期格式问题及解决
代码如下:
NSDate
*date=[NSDatedate];NSDateFormatter*dateFormatter=[[NSDateFormatteralloc]init];dateFormatter.dateFormat
Aexsi
·
2022-07-05 17:45
iOS OC中
NSDate
相关用法的整理
NSDate
用来表示公历的GMT时间(格林威治时间)。是独立与任何历法的,它只是时间相对于某个时间点的时间差;
NSDate
是进行日历计算的基础。
eden_lx
·
2022-04-25 11:10
iOS 15.4 获取本地当前时间12小时制的Bug
公司客户端App就在今天上午上线了,晚上的时候线上就发现问题了,问题出现的是系统是15.4,这个系统是在今年的3月16号更新的,然后本地时间格式是12小时制,代码获取的本地时间,就会有Bug:
NSDate
iOS小武哥
·
2022-04-02 08:08
iOS 零星小技巧 - 01
也希望对看文章的你又帮助)查看提示01layoutSubviews调用的调用时机02Color颜色宏定义03视图的生命周期04UIImageView填充模式05文字内容换行06把NSString格式的日期转换为
NSDate
07
浮桥小麦
·
2022-02-22 06:39
1------
button、UIview,UIwindow的创建与自定义;一些触发的函数事件;同时强化了一些规则如「「alloc」init」」,sb.sth等--OC语法上:学到了类的操作和创建,self的使用;同时了解了「
NSDate
SimonRi
·
2022-02-21 14:10
iOS NSString与
NSDate
互转
NSDateFormatter*formatter=[[NSDateFormatteralloc]init];NSTimeZone*timeZone=[NSTimeZonelocalTimeZone];[formattersetTimeZone:timeZone];[formattersetDateFormat:@"M/d/yyyyh:ma"];NSString*stringTime=@"12/5
邋了个遢
·
2022-02-21 01:03
iOS原理 Tagged Pointer
iOS原理文章汇总TaggedPointer是内存管理中的一种优化方案,专门用来处理小对象,例如NSNumber、
NSDate
以及比较简短的NSString等对象。
东篱采桑人
·
2022-02-19 08:28
iOS 笔记之_时间戳 + DES 加密
iOS时间戳+DES加密时间戳
NSDate
*date=[NSDatedateWithTimeIntervalSinceNow:0];NSTimeIntervala=[datetimeIntervalSince1970
sunny_轻芒
·
2022-02-17 10:42
iOS开发-
NSDate
与NSCalendar的使用
NSDateFormatter的作用NSString*->
NSDate
*-(nullableNSDate*)dateFromString:(NSString*)string;
NSDate
*->NSString
frola_
·
2022-02-16 16:18
对日期格式的处理
NSDateFormatter*dateFormatter=[[NSDateFormatteralloc]init];[dateFormattersetDateFormat:@"yyyyMMddHHmmss"];
NSDate
zxb_张大帅
·
2022-02-13 19:15
获取本周的所有日期(从周一到周日)
//获取当前一周的日期-(NSArray*)getWeekTime{NSMutableArray*weekArray=[NSMutableArrayarrayWithCapacity:7];
NSDate
流浪者123
·
2022-02-13 11:47
ios native 的
NSDate
转到React native的坑
最近开发过程中与别的部门对接时,model中有个字段传给我的是
NSDate
类型,为了便于RN处理我直接用第三方YYModel转化modeltoNSDictionary,这一步比较简单,不做过多说明,直接上代码
米米0311
·
2022-02-12 22:55
优化NSDateFormatter?
首先,过度的创建NSDateFormatter用于
NSDate
与NSString之间转换,会导致App卡顿,打开Profile工具查一下性能,你会发现这种操作占CPU比例是非常高的。
Rui哥
·
2022-02-12 05:22
OC一个简单的打印执行时间宏定义
#defineSTART()
NSDate
*startTime=[NSDatedate]#defineSTOP()NSLog(@"tooktime:%.0fms",-[startTimetimeIntervalSinceNow
DoKeer
·
2022-02-11 12:37
常用的一些时间格式
1.NSString转
NSDate
格式:-(
NSDate
*)stringToDate:(NSSTring*)str{NSDateFormatter*dateFormatter=[NSDateFormatteralloc
biny_ios
·
2022-02-10 15:16
iOS获取两周的时间
//获取当前时间,日期
NSDate
*currentDate=[NSDatedate];NSDateFormatter*dateFormatter=[[NSDateFormatteralloc]init]
风雪山神喵
·
2022-02-10 13:00
iOS Tagged Pointer
从64bit开始引入TaggedPointer技术,用于优化NSNumber、
NSDate
、NSString等小对象的存储例如:没有使用TaggedPointer之前,NSNumber等对象需要动态分配内存
iOS劝退师
·
2022-02-07 10:00
细数iOS中的线程同步方案(二)
这个其实就是对pthread_mutex普通互斥锁的封装;面向对象,使用起来更方便;-(void)lock;-(void)unlock;-(BOOL)tryLock;-(BOOL)lockBeforeDate:(
NSDate
_小沫
·
2022-02-07 00:17
iOS日期判断是今天、昨天还是明天
NSString*)string{NSDateFormatter*format=[[NSDateFormatteralloc]init];[formatsetDateFormat:@"yyyy-MM-dd"];
NSDate
彗星来的那一夜
·
2022-02-05 21:04
iOS
NSDate
计算之夏令时
夏时令(DaylightSavingTime:DST),又称“日光节约时制”和“夏令时间”,是一种为节约能源而人为规定地方时间的制度,在这一制度实行期间所采用的统一时间称为“夏令时间”。一般在天亮早的夏季人为将时间调快一小时,可以使人早起早睡,减少照明量,以充分利用光照资源,从而节约照明用电。各个采纳夏时制的国家具体规定不同。目前全世界有近110个国家每年要实行夏令时。公司有个邮件项目,其中Exc
Raindew
·
2022-01-25 16:16
NSDateComponents和NSCalendar释义
季度等一、NSDateComponents相关方法:1.NSCalendar对象的-(NSDateComponents*)components:(NSUInteger)unitFlagsfromDate:(
NSDate
飞龙之城
·
2022-01-21 16:58
ios
NSDate
释义
主要是对ios平台
NSDate
时间类中的方法的用法解释,以备不时之需:一、
NSDate
用来表示公历的GMT时间(格林威治时间)。有下面几种初始化方法:1.
飞龙之城
·
2022-01-21 15:12
Tagged Pointer 标记指针
1、为了节省内存和提高执行效率,从64位架构处理器开始,苹果引入了标记指针(TaggedPointer)技术;2、TaggedPointer专门用来存储小对象,比如NSString、NSNumber、
NSDate
Xcoder_
·
2021-09-17 13:37
iOS计算两个日期的时间间隔,多少天数、周数、月数、年数、时、分、秒
NSDateFormatter*dateFormatter=[[NSDateFormatteralloc]init];[dateFormattersetDateFormat:@"yyyy-MM-dd"];
NSDate
不要虚度美好的时光
·
2021-08-18 10:34
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他