Xcode時間格式

2021-06-18 10:15:30 字數 842 閱讀 2068

時間設定的格式

-(nsstring *)getdate

//大寫的h日期格式將預設為24小時制,小寫的h日期格式將預設為12小時

//不需要特別設定,只需要在dataformat裡設定類似"yyyy-mmm-dd"這樣的格式就可以了

//日期格式如下:

//y 年 year 1996; 96

//m 年中的月份 month july; jul; 07

//w 年中的週數 number 27

//w 月份中的週數 number 2

//d 年中的天數 number 189

//d 月份中的天數 number 10

//f 月份中的星期 number 2

//e 星期中的天數 text tuesday; tue

//a am/pm 標記 text pm

//h 一天中的小時數(0-23) number 0

//k 一天中的小時數(1-24) number 24

//k am/pm 中的小時數(0-11) number 0

//h am/pm 中的小時數(1-12) number 12

//m 小時中的分鐘數 number 30

//s 分鐘中的秒數 number 55

//s 毫秒數 number 978

//z 時區 general time zone pacific standard time; pst; gmt-08:00

//z 時區 rfc 822 time zone -0800

xcode中列印毫秒時間

直接列印 nsdate date 得到的是精確到秒的時間,下面的方法可以列印精確到毫秒的時間。nsdateformatter dateformatter nsdateformatter alloc init dateformatter setdatestyle nsdateformattermedi...

php 時間格式 PHP時間格式大全

date 用法 date 格式,時間 如果沒有時間引數,則使用當前時間.格式是乙個字串,其中以下字元有特殊意義 u 替換成從乙個起始時間1970年1月1日以來的秒數 echo 時間格式1 date y m d h i s 2010 06 12 10 26 31 echo 時間格式2 date y m...

時間格式轉換 時間戳

時間 附 dateformat parser new dateformat eeee,mmmm dd,yyyy dateformat formatter new dateformat eee.mm dd dateformat sdf new dateformat yyyy mm dd hh mm s...