位置:首頁 > 高級語言 > Objective-C教學 > Objective-C 日期和時間

Objective-C 日期和時間

NSDate 和 NSDateFormatter 類提供的日期和時間的功能。

NSDateFormatter是輔助類,可以輕鬆轉換 NSDate 為 NSString,反之亦然。

下麵是一個簡單的例子來說明 NSDate 和 NSString 之間的轉化。 

#import <Foundation/Foundation.h>

int main()
{
   NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
   NSDate *date= [NSDate date];
   NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];
   [dateFormatter setDateFormat:@"yyyy-MM-dd"];
   NSString *dateString = [dateFormatter stringFromDate:date];
   NSLog(@"Current date is %@",dateString);
   NSDate *newDate = [dateFormatter dateFromString:dateString];
   NSLog(@"NewDate: %@",newDate);
   [pool drain]
   return 0;
}

現在,當我們編譯並運行程序,我們會得到以下的結果。

2013-09-29 14:48:13.445 Date and time[870] Current date is 2013-09-29
2013-09-29 14:48:13.447 Date and time[870] NewDate: 2013-09-28 18:30:00 +0000

正如我們可以看到在上麵的程序中,我們得到了當前時間,在 NSDate 的幫助下。

NSDateFormatter類,容易格式轉換。

日期格式基於可用的數據可以改變。例如,當我們要添加的時間上麵的例子中,日期格式可以改為 @"yyyy-MM-dd:hh:mm:ss"