今天在寫下拉刷新時,忽然想在UIRefreshControl中實現相似MJRefresh的上次刷新時間的效果,正好想研究一下在iOS中時間的處理,研究了一下如何獲取如今時間並以必定格式輸出swift
/** 獲取當前時間 - returns: 當前時間 */ func getTime()->String{ //以1970年到如今的秒數初始化一個NSDate對象 let Date:NSDate = NSDate(timeIntervalSinceNow:NSDate().timeIntervalSinceNow) //定義一個NSDateFormatter對象 let formatter = NSDateFormatter() //設置格式 formatter.dateFormat = "HH時mm分ss秒" //輸出一個字符串 let date = formatter.stringFromDate(Date) return date; }
G 年代標誌符
y 年
M 月
d 日
h 時 在上午或下午 (1~12)
H 時 在一天中 (0~23)
m 分
s 秒函數