天天看點

ios日期格式轉換

1、如何如何将一個字元串如“ 20110826134106”裝化為任意的日期時間格式,下面列舉兩種類型:

   NSString* string = @"20110826134106";

    NSDateFormatter *inputFormatter = [[[NSDateFormatter alloc] init] autorelease];

    [inputFormatter setLocale:[[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"] autorelease]];

    [inputFormatter setDateFormat:@"yyyyMMddHHmmss"];

    NSDate* inputDate = [inputFormatter dateFromString:string];

    NSLog(@"date = %@", inputDate);

    NSDateFormatter *outputFormatter = [[[NSDateFormatter alloc] init] autorelease]; 

    [outputFormatter setLocale:[NSLocale currentLocale]];

    [outputFormatter setDateFormat:@"yyyy年MM月dd日 HH時mm分ss秒"];

    NSString *str = [outputFormatter stringFromDate:inputDate];

    NSLog(@"testDate:%@", str);

兩次列印的結果為:

    date = 2011-08-26 05:41:06 +0000

    testDate:2011年08月26日 13時41分06秒

說明:上面的時間是美國時間,下面的沒有設定

   NSString* string = @"Wed, 05 May 2011 10:50:00 +0800";

    NSDateFormatter *inputFormatter = [[[NSDateFormatter alloc] init] autorelease];

    [inputFormatter setLocale:[[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"] autorelease]];

    [inputFormatter setDateFormat:@"EEE, d MMM yyyy HH:mm:ss Z"];

    NSDate* inputDate = [inputFormatter dateFromString:string];

    NSLog(@"date = %@", inputDate);

// 獲得本地時間指定時區

                    NSDate *dates = [NSDate date];

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

                    [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];

                    NSTimeZone* timeZone = [NSTimeZone timeZoneWithName:@"Asia/beijing"];

                    [formatter setTimeZone:timeZone];

                    NSString *loctime = [formatter stringFromDate:dates];

2、以前一直為這個事情糾結,無奈隻能拼接字元串:

NSString *str=@"20120403000000";

NSString *dateStr=[NSString stringWithFormat:@"有效期至:%@年%@月%@日",

                           [str substringWithRange:NSMakeRange(0, 4)],

                           [str substringWithRange:NSMakeRange(4, 2)],

                           [str substringWithRange:NSMakeRange(6, 2)]];

這個方法笨,可是沒辦法,查了好多資料,都沒明白,今天突然明白了,呵呵,隻要把那個[inputFormatter setDateFormat:@"EEE, d MMM yyyy HH:mm:ss Z"];@“”裡面的格式轉化為你字元串的格式一切就OK了,不知道我說明白了嗎

3、iOS-NSDateFormatter 格式說明:

G: 公元時代,例如AD公元

    yy: 年的後2位

    yyyy: 完整年

    MM: 月,顯示為1-12

    MMM: 月,顯示為英文月份簡寫,如 Jan

    MMMM: 月,顯示為英文月份全稱,如 Janualy

    dd: 日,2位數表示,如02

    d: 日,1-2位顯示,如 2

    EEE: 簡寫星期幾,如Sun

    EEEE: 全寫星期幾,如Sunday

    aa: 上下午,AM/PM

    H: 時,24小時制,0-23

    K:時,12小時制,0-11

    m: 分,1-2位

    mm: 分,2位

    s: 秒,1-2位

    ss: 秒,2位

    S: 毫秒

常用日期結構:

yyyy-MM-dd HH:mm:ss.SSS

yyyy-MM-dd HH:mm:ss

yyyy-MM-dd

MM dd yyyy

下面得到日期是數字,可以避免語言不同問題

取得目前的年月日,目前的時分秒獲得,周幾和星期幾獲得

NSDate*date = [NSDate date];

NSCalendar*calendar = [NSCalendar currentCalendar];

NSDateComponents*comps;

// 年月日獲得

comps =[calendar components:(NSYearCalendarUnit | NSMonthCalendarUnit |NSDayCalendarUnit)

                                      fromDate:date];

NSIntegeryear = [comps year];

NSIntegermonth = [comps month];

NSIntegerday = [comps day];

NSLog(@"year:%d month: %d, day: %d", year, month, day);

//目前的時分秒獲得

comps =[calendar components:(NSHourCalendarUnit | NSMinuteCalendarUnit |NSSecondCalendarUnit)

                                      fromDate:date];

NSIntegerhour = [comps hour];

NSIntegerminute = [comps minute];

NSIntegersecond = [comps second];

NSLog(@"hour:%d minute: %d second: %d", hour, minute, second);

// 周幾和星期幾獲得

comps =[calendar components:(NSWeekCalendarUnit | NSWeekdayCalendarUnit |NSWeekdayOrdinalCalendarUnit)

                                      fromDate:date];

NSInteger week = [comps week]; // 今年的第幾周

NSIntegerweekday = [comps weekday]; // 星期幾(注意,周日是“1”,周一是“2”。。。。)

NSIntegerweekdayOrdinal = [comps weekdayOrdinal]; // 這個月的第幾周

NSLog(@"week:%d weekday: %d weekday ordinal: %d", week, weekday, weekdayOrdinal);

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

       if(dateSwitch.on)

       [dateFormattersetDateFormat:@"dd-MMM-yyy,hh:mm:ss"];

       else

       [dateFormatter setDateFormat:@"hh:mm:ss"];

       labelTime.text = [dateFormatter stringFromDate:[NSDatedate]];

       labelTime.font = [UIFontsystemFontOfSize:fontSlider.value];

       [dateFormatter release];

#pramark -------------------

NSDate存儲的是世界标準時(UTC),輸出時需要根據時區轉換為本地時間

Dates

        NSDate類提供了建立date,比較date以及計算兩個date之間間隔的功能。Date對象是不可改變的。

        如果你要建立date對象并表示目前日期,你可以alloc一個NSDate對象并調用init初始化:

C代碼  

ios日期格式轉換
  1. NSDate *now = [[NSDate alloc] init];    

          或者使用NSDate的date類方法來建立一個日期對象。如果你需要與目前日期不同的日期,你可以使用NSDate的initWithTimeInterval...或dateWithTimeInterval...方法,你也可以使用更複雜的calendar或date components對象。

        建立一定時間間隔的NSDate對象:

C代碼  

ios日期格式轉換
  1. NSTimeInterval secondsPerDay = 24 * 60 * 60;    
  2. NSDate *tomorrow = [[NSDate alloc] initWithTimeIntervalSinceNow:secondsPerDay];    
  3. NSDate *yesterday = [[NSDate alloc] initWithTimeIntervalSinceNow:-secondsPerDay];    
  4. [tomorrow release];    
  5. [yesterday release];    

        使用增加時間間隔的方式來生成NSDate對象:

C代碼  

ios日期格式轉換
  1. NSTimeInterval secondsPerDay = 24 * 60 * 60;    
  2. NSDate *today = [[NSDate alloc] init];    
  3. NSDate *tomorrow, *yesterday;    
  4. tomorrow = [today dateByAddingTimeInterval: secondsPerDay];    
  5. yesterday = [today dateByAddingTimeInterval: -secondsPerDay];    
  6. [today release];    

        如果要對NSDate對象進行比較,可以使用isEqualToDate:, compare:, laterDate:和 earlierDate:方法。這些方法都進行精确比較,也就是說這些方法會一直精确比較到NSDate對象中秒一級。例如,你可能比較兩個日期,如果他們之間的間隔在一分鐘之内則認為這兩個日期是相等的。在這種情況下使用,timeIntervalSinceDate:方法來對兩個日期進行比較。下面的代碼進行了示例:

C代碼  

ios日期格式轉換
  1. if (fabs([date2 timeIntervalSinceDate:date1]) < 60) ...   

NSCalendar & NSDateComponents

        月曆對象封裝了對系統日期的計算,包括這一年開始,總天數以及劃分。你将使用月曆對象對絕對日期與date components(包括年,月,日,時,分,秒)進行轉換。

        NSCalendar定義了不同的月曆,包括佛教曆,格裡高利曆等(這些都與系統提供的本地化設定相關)。NSCalendar與NSDateComponents對象緊密相關。

        你可以通過NSCalendar對象的currentCalendar方法來獲得目前系統使用者設定的月曆。

C代碼  

ios日期格式轉換
  1. NSCalendar *currentCalendar = [NSCalendar currentCalendar];    
  2. NSCalendar *japaneseCalendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSJapaneseCalendar];    
  3. NSCalendar *usersCalendar = [[NSLocale currentLocale] objectForKey:NSLocaleCalendar];    

        usersCalendar和currentCalendar對象是相等的,盡管他們是不同的對象。

        你可以使用NSDateComponents對象來表示一個日期對象的元件——例如年,月,日和小時。如果要使一個NSDateComponents對象有意義,你必須将其與一個月曆對象相關聯。下面的代碼示例了如何建立一個NSDateComponents對象:

C代碼  

ios日期格式轉換
  1. NSDateComponents *components = [[NSDateComponents alloc] init];    
  2. [components setDay:6];    
  3. [components setMonth:5];    
  4. [components setYear:2004];    
  5. NSInteger weekday = [components weekday]; // Undefined (== NSUndefinedDateComponent)    

        要将一個日期對象解析到相應的date components,你可以使用NSCalendar的components:fromDate:方法。此外日期本身,你需要指定NSDateComponents對象傳回元件。

C代碼  

ios日期格式轉換
  1. NSDate *today = [NSDate date];    
  2. NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];    
  3. NSDateComponents *weekdayComponents = [gregorian components:(NSDayCalendarUnit | NSWeekdayCalendarUnit) fromDate:today];    
  4. NSInteger day = [weekdayComponents day];    
  5. NSInteger weekday = [weekdayComponents weekday];  

同樣你也可以從NSDateComponents對象來建立NSDate對象:  

C代碼  

ios日期格式轉換
  1. NSDateComponents *components = [[NSDateComponents alloc] init];    
  2. [components setWeekday:2]; // Monday    
  3. [components setWeekdayOrdinal:1]; // The first Monday in the month    
  4. [components setMonth:5]; // May    
  5. [components setYear:2008];    
  6. NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];    
  7. NSDate *date = [gregorian dateFromComponents:components];    

        為了保證正确的行為,您必須確定使用的元件在月曆上是有意義的。指定“出界”月曆元件,如一個-6或2月30日在公曆中的日期值産生未定義的行為。

        你也可以建立一個不帶年份的NSDate對象,這樣的作業系統會自動生成一個年份,但在後面的代碼中不會使用其自動生成的年份。

C代碼  

ios日期格式轉換
  1. NSDateComponents *components = [[NSDateComponents alloc] init];    
  2. [components setMonth:11];    
  3. [components setDay:7];    
  4. NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];    
  5. NSDate *birthday = [gregorian dateFromComponents:components];   

下面的示例顯示了如何從一個月曆置換到另一個月曆:

C代碼  

ios日期格式轉換
  1. NSDateComponents *comps = [[NSDateComponents alloc] init];    
  2. [comps setDay:6];    
  3. [comps setMonth:5];    
  4. [comps setYear:2004];    
  5. NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];    
  6. NSDate *date = [gregorian dateFromComponents:comps];    
  7. [comps release];    
  8. [gregorian release];    
  9. NSCalendar *hebrew = [[NSCalendar alloc] initWithCalendarIdentifier:NSHebrewCalendar];    
  10. NSUInteger unitFlags = NSDayCalendarUnit | NSMonthCalendarUnit | NSYearCalendarUnit;    
  11. NSDateComponents *components = [hebrew components:unitFlags fromDate:date];    
  12. NSInteger day = [components day]; // 15    
  13. NSInteger month = [components month]; // 9    
  14. NSInteger year = [components year]; // 5764    

曆法計算

    在目前時間加上一個半小時:

C代碼  

ios日期格式轉換
  1. NSDate *today = [[NSDate alloc] init];    
  2. NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];    
  3. NSDateComponents *offsetComponents = [[NSDateComponents alloc] init];    
  4. [offsetComponents setHour:1];    
  5. [offsetComponents setMinute:30];    
  6. // Calculate when, according to Tom Lehrer, World War III will end    
  7. NSDate *endOfWorldWar3 = [gregorian dateByAddingComponents:offsetComponents toDate:today options:0];    

    獲得目前星期中的星期天(使用格裡高利曆):

C代碼  

ios日期格式轉換
  1. NSDate *today = [[NSDate alloc] init];    
  2. NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];    
  3. // Get the weekday component of the current date    
  4. NSDateComponents *weekdayComponents = [gregorian components:NSWeekdayCalendarUnit fromDate:today];    
  5. NSDateComponents *componentsToSubtract = [[NSDateComponents alloc] init];    
  6. [componentsToSubtract setDay: 0 - ([weekdayComponents weekday] - 1)];    
  7. NSDate *beginningOfWeek = [gregorian dateByAddingComponents:componentsToSubtract toDate:today options:0];    
  8. NSDateComponents *components = [gregorian components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit) fromDate: beginningOfWeek];    
  9. beginningOfWeek = [gregorian dateFromComponents:components];    

    如何可以計算出一周的第一天(根據系統的月曆設定):

C代碼  

ios日期格式轉換
  1. NSDate *today = [[NSDate alloc] init];    
  2. NSDate *beginningOfWeek = nil;    
  3. BOOL ok = [gregorian rangeOfUnit:NSWeekCalendarUnit startDate:&beginningOfWeek interval:NULL forDate: today];    

    獲得兩個日期之間的間隔:

C代碼  

ios日期格式轉換
  1. NSDate *startDate = ...;    
  2. NSDate *endDate = ...;    
  3. NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];    
  4. NSUInteger unitFlags = NSMonthCalendarUnit | NSDayCalendarUnit;    
  5. NSDateComponents *components = [gregorian components:unitFlags fromDate:startDate toDate:endDate options:0];    
  6. NSInteger months = [components month];    
  7. NSInteger days = [components day];  

    使用Category來計算同一時代(AD|BC)兩個日期午夜之間的天數:

C代碼  

ios日期格式轉換
  1. @implementation NSCalendar (MySpecialCalculations)    
  2. -(NSInteger)daysWithinEraFromDate:(NSDate *) startDate toDate:(NSDate *) endDate {    
  3.      NSInteger startDay=[self ordinalityOfUnit:NSDayCalendarUnit inUnit: NSEraCalendarUnit forDate:startDate];    
  4.      NSInteger endDay=[self ordinalityOfUnit:NSDayCalendarUnit inUnit: NSEraCalendarUnit forDate:endDate];    
  5.      return endDay-startDay;    
  6. }    
  7. @end    

    使用Category來計算不同時代(AD|BC)兩個日期的天數:

C代碼  

ios日期格式轉換
  1. @implementation NSCalendar (MyOtherMethod)    
  2. -(NSInteger) daysFromDate:(NSDate *) startDate toDate:(NSDate *) endDate {    
  3.      NSCalendarUnit units=NSEraCalendarUnit | NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit;    
  4.      NSDateComponents *comp1=[self components:units fromDate:startDate];    
  5.      NSDateComponents *comp2=[self components:units fromDate endDate];    
  6.      [comp1 setHour:12];    
  7.      [comp2 setHour:12];    
  8.      NSDate *date1=[self dateFromComponents: comp1];    
  9.      NSDate *date2=[self dateFromComponents: comp2];    
  10.      return [[self components:NSDayCalendarUnit fromDate:date1 toDate:date2 options:0] day];    
  11. }    
  12. @end   

    判斷一個日期是否在目前一周内(使用格裡高利曆):

C代碼  

ios日期格式轉換
  1. -(BOOL)isDateThisWeek:(NSDate *)date {    
  2.      NSDate *start;    
  3.      NSTimeInterval extends;    
  4.      NSCalendar *cal=[NSCalendar autoupdatingCurrentCalendar];    
  5.      NSDate *today=[NSDate date];    
  6.      BOOL success= [cal rangeOfUnit:NSWeekCalendarUnit startDate:&start interval: &extends forDate:today];    
  7.      if(!success)    
  8.         return NO;    
  9.      NSTimeInterval dateInSecs = [date timeIntervalSinceReferenceDate];    
  10.      NSTimeInterval dayStartInSecs= [start timeIntervalSinceReferenceDate];    
  11.      if(dateInSecs > dayStartInSecs && dateInSecs < (dayStartInSecs+extends)){    
  12.           return YES;    
  13.      }    
  14.      else {    
  15.           return NO;    
  16.      }    
  17. }    

來源:http://blog.csdn.net/lingedeng/article/details/6996599

1、擷取目前時間

C代碼  

ios日期格式轉換
  1. NSDateFormatter*formatter = [[NSDateFormatteralloc] init];  
  2. [formatter setDateFormat:@"yyyy-MM-dd hh:mm:ss"];  
  3. NSString *locationString=[formatter stringFromDate: [NSDate date]];  

另外的方法:

C代碼  

ios日期格式轉換
  1. -(NSString *)getDate  
  2. {  
  3. NSDateFormatter*formatter = [[NSDateFormatteralloc] init];  
  4. [formatter setDateFormat:@"yyyy-MM-dd EEEE HH:mm:ss a"];  
  5. NSString *locationString=[formatter stringFromDate: [NSDate date]];  
  6. [formatter release];  
  7. return locationString;  
  8. }  

//大寫的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

2、NSTimer定時器的基本操作方式

NSTimer是Cocoa中比較常用的定時器類,基本操作如下:

handleTimer方法可以自行定義。在需要的地方建立timer即可,handleTimer就可以每0.5秒執行一次。

C代碼  

ios日期格式轉換
  1.  - (void) handleTimer: (NSTimer *) timer  
  2. {  
  3.    //在這裡進行處理  
  4. }   
  5. NSTimer *timer;  
  6. timer = [NSTimer scheduledTimerWithTimeInterval: 0.5 target: self selector: @selector(handleTimer:)userInfo: nil repeats: YES];  

3、定時器

設定定時器下面顯示的定時器将在一秒鐘後觸發,并一直重複直到定時器被禁用。定時器每次激活時,就會調用發送選擇器消息的目标來進行初始化。回調方法帶有一個參數,就是定時器本身.要禁用一個定時器,給它發送invalidate消息,這将釋放定時器對象并把它從目前運作循環中删除。

C代碼  

ios日期格式轉換
  1. NSTime *timer ;  
  2. timer = [NSTimer scheduledTimerWithTimeInterval:1.0target:self selector:@selector(handlTimer:) userInfo:nilrepeats:YES];  
  3. - (void)handleTimer:(NSTimer *)timer{  
  4. printf("timer count: %d", count++);  
  5. if(count > 3)  
  6. {  
  7. [timer invalidate];  
  8. }  

來源: http://blog.csdn.net/imekong/article/details/7041312

1. 使用 NSTimeZone 取得世界各地時間的方法

 下列程式碼将示範,如何利用 NSTimeZone 取得世界上已知的時區名稱,并且透過這些名稱來獲得當地時間,如果在系統時間的取得上有任何疑問,可以參考取得 iOS 系統日期與星期的方法一文,其程式碼如下。

C代碼  

ios日期格式轉換
  1. //取得目前已知的所有地裡名稱  
  2. NSArray *timeZoneNames = [NSTimeZone knownTimeZoneNames];   
  3. //取得本地目前時間  
  4. NSDate *date = [NSDate date];   
  5. for(NSString *name in timeZoneNames) {   
  6. NSTimeZone *timezone = [[NSTimeZone alloc] initWithName:name];   
  7. NSDateFormatter *formatter = [[NSDateFormatter alloc] init];   
  8. //設定時間格式  
  9. [formatter setDateFormat:@"YYYY-MM-d HH:mm:ss"];   
  10. //設定時區  
  11. [formatter setTimeZone:timezone];   
  12. //時間格式正規化并做時區校正  
  13. NSString *correctDate = [formatter stringFromDate:date];  
  14. NSLog(@"地點:%@ 當地時間:%@",[timezone name], correctDate);   
  15. [formatter release];   
  16. [timezone release];   
  17. }  

NSDate存儲的是世界标準時(UTC),輸出時需要根據時區轉換為本地時間

Dates

        NSDate類提供了建立date,比較date以及計算兩個date之間間隔的功能。Date對象是不可改變的。

        如果你要建立date對象并表示目前日期,你可以alloc一個NSDate對象并調用init初始化:

C代碼  

ios日期格式轉換
  1. NSDate *now = [[NSDate alloc] init];    

          或者使用NSDate的date類方法來建立一個日期對象。如果你需要與目前日期不同的日期,你可以使用NSDate的initWithTimeInterval...或dateWithTimeInterval...方法,你也可以使用更複雜的calendar或date components對象。

        建立一定時間間隔的NSDate對象:

C代碼  

ios日期格式轉換
  1. NSTimeInterval secondsPerDay = 24 * 60 * 60;    
  2. NSDate *tomorrow = [[NSDate alloc] initWithTimeIntervalSinceNow:secondsPerDay];    
  3. NSDate *yesterday = [[NSDate alloc] initWithTimeIntervalSinceNow:-secondsPerDay];    
  4. [tomorrow release];    
  5. [yesterday release];    

        使用增加時間間隔的方式來生成NSDate對象:

C代碼  

ios日期格式轉換
  1. NSTimeInterval secondsPerDay = 24 * 60 * 60;    
  2. NSDate *today = [[NSDate alloc] init];    
  3. NSDate *tomorrow, *yesterday;    
  4. tomorrow = [today dateByAddingTimeInterval: secondsPerDay];    
  5. yesterday = [today dateByAddingTimeInterval: -secondsPerDay];    
  6. [today release];    

        如果要對NSDate對象進行比較,可以使用isEqualToDate:, compare:, laterDate:和 earlierDate:方法。這些方法都進行精确比較,也就是說這些方法會一直精确比較到NSDate對象中秒一級。例如,你可能比較兩個日期,如果他們之間的間隔在一分鐘之内則認為這兩個日期是相等的。在這種情況下使用,timeIntervalSinceDate:方法來對兩個日期進行比較。下面的代碼進行了示例:

C代碼  

ios日期格式轉換
  1. if (fabs([date2 timeIntervalSinceDate:date1]) < 60) ...   

NSCalendar & NSDateComponents

        月曆對象封裝了對系統日期的計算,包括這一年開始,總天數以及劃分。你将使用月曆對象對絕對日期與date components(包括年,月,日,時,分,秒)進行轉換。

        NSCalendar定義了不同的月曆,包括佛教曆,格裡高利曆等(這些都與系統提供的本地化設定相關)。NSCalendar與NSDateComponents對象緊密相關。

        你可以通過NSCalendar對象的currentCalendar方法來獲得目前系統使用者設定的月曆。

C代碼  

ios日期格式轉換
  1. NSCalendar *currentCalendar = [NSCalendar currentCalendar];    
  2. NSCalendar *japaneseCalendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSJapaneseCalendar];    
  3. NSCalendar *usersCalendar = [[NSLocale currentLocale] objectForKey:NSLocaleCalendar];    

        usersCalendar和currentCalendar對象是相等的,盡管他們是不同的對象。

        你可以使用NSDateComponents對象來表示一個日期對象的元件——例如年,月,日和小時。如果要使一個NSDateComponents對象有意義,你必須将其與一個月曆對象相關聯。下面的代碼示例了如何建立一個NSDateComponents對象:

C代碼  

ios日期格式轉換
  1. NSDateComponents *components = [[NSDateComponents alloc] init];    
  2. [components setDay:6];    
  3. [components setMonth:5];    
  4. [components setYear:2004];    
  5. NSInteger weekday = [components weekday]; // Undefined (== NSUndefinedDateComponent)    

        要将一個日期對象解析到相應的date components,你可以使用NSCalendar的components:fromDate:方法。此外日期本身,你需要指定NSDateComponents對象傳回元件。

C代碼  

ios日期格式轉換
  1. NSDate *today = [NSDate date];    
  2. NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];    
  3. NSDateComponents *weekdayComponents = [gregorian components:(NSDayCalendarUnit | NSWeekdayCalendarUnit) fromDate:today];    
  4. NSInteger day = [weekdayComponents day];    
  5. NSInteger weekday = [weekdayComponents weekday];  

同樣你也可以從NSDateComponents對象來建立NSDate對象:  

C代碼  

ios日期格式轉換
  1. NSDateComponents *components = [[NSDateComponents alloc] init];    
  2. [components setWeekday:2]; // Monday    
  3. [components setWeekdayOrdinal:1]; // The first Monday in the month    
  4. [components setMonth:5]; // May    
  5. [components setYear:2008];    
  6. NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];    
  7. NSDate *date = [gregorian dateFromComponents:components];    

        為了保證正确的行為,您必須確定使用的元件在月曆上是有意義的。指定“出界”月曆元件,如一個-6或2月30日在公曆中的日期值産生未定義的行為。

        你也可以建立一個不帶年份的NSDate對象,這樣的作業系統會自動生成一個年份,但在後面的代碼中不會使用其自動生成的年份。

C代碼  

ios日期格式轉換
  1. NSDateComponents *components = [[NSDateComponents alloc] init];    
  2. [components setMonth:11];    
  3. [components setDay:7];    
  4. NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];    
  5. NSDate *birthday = [gregorian dateFromComponents:components];   

下面的示例顯示了如何從一個月曆置換到另一個月曆:

C代碼  

ios日期格式轉換
  1. NSDateComponents *comps = [[NSDateComponents alloc] init];    
  2. [comps setDay:6];    
  3. [comps setMonth:5];    
  4. [comps setYear:2004];    
  5. NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];    
  6. NSDate *date = [gregorian dateFromComponents:comps];    
  7. [comps release];    
  8. [gregorian release];    
  9. NSCalendar *hebrew = [[NSCalendar alloc] initWithCalendarIdentifier:NSHebrewCalendar];    
  10. NSUInteger unitFlags = NSDayCalendarUnit | NSMonthCalendarUnit | NSYearCalendarUnit;    
  11. NSDateComponents *components = [hebrew components:unitFlags fromDate:date];    
  12. NSInteger day = [components day]; // 15    
  13. NSInteger month = [components month]; // 9    
  14. NSInteger year = [components year]; // 5764    

曆法計算

    在目前時間加上一個半小時:

C代碼  

ios日期格式轉換
  1. NSDate *today = [[NSDate alloc] init];    
  2. NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];    
  3. NSDateComponents *offsetComponents = [[NSDateComponents alloc] init];    
  4. [offsetComponents setHour:1];    
  5. [offsetComponents setMinute:30];    
  6. // Calculate when, according to Tom Lehrer, World War III will end    
  7. NSDate *endOfWorldWar3 = [gregorian dateByAddingComponents:offsetComponents toDate:today options:0];    

    獲得目前星期中的星期天(使用格裡高利曆):

C代碼  

ios日期格式轉換
  1. NSDate *today = [[NSDate alloc] init];    
  2. NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];    
  3. // Get the weekday component of the current date    
  4. NSDateComponents *weekdayComponents = [gregorian components:NSWeekdayCalendarUnit fromDate:today];    
  5. NSDateComponents *componentsToSubtract = [[NSDateComponents alloc] init];    
  6. [componentsToSubtract setDay: 0 - ([weekdayComponents weekday] - 1)];    
  7. NSDate *beginningOfWeek = [gregorian dateByAddingComponents:componentsToSubtract toDate:today options:0];    
  8. NSDateComponents *components = [gregorian components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit) fromDate: beginningOfWeek];    
  9. beginningOfWeek = [gregorian dateFromComponents:components];    

    如何可以計算出一周的第一天(根據系統的月曆設定):

C代碼  

ios日期格式轉換
  1. NSDate *today = [[NSDate alloc] init];    
  2. NSDate *beginningOfWeek = nil;    
  3. BOOL ok = [gregorian rangeOfUnit:NSWeekCalendarUnit startDate:&beginningOfWeek interval:NULL forDate: today];    

    獲得兩個日期之間的間隔:

C代碼  

ios日期格式轉換
  1. NSDate *startDate = ...;    
  2. NSDate *endDate = ...;    
  3. NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];    
  4. NSUInteger unitFlags = NSMonthCalendarUnit | NSDayCalendarUnit;    
  5. NSDateComponents *components = [gregorian components:unitFlags fromDate:startDate toDate:endDate options:0];    
  6. NSInteger months = [components month];    
  7. NSInteger days = [components day];  

    使用Category來計算同一時代(AD|BC)兩個日期午夜之間的天數:

C代碼  

ios日期格式轉換
  1. @implementation NSCalendar (MySpecialCalculations)    
  2. -(NSInteger)daysWithinEraFromDate:(NSDate *) startDate toDate:(NSDate *) endDate {    
  3.      NSInteger startDay=[self ordinalityOfUnit:NSDayCalendarUnit inUnit: NSEraCalendarUnit forDate:startDate];    
  4.      NSInteger endDay=[self ordinalityOfUnit:NSDayCalendarUnit inUnit: NSEraCalendarUnit forDate:endDate];    
  5.      return endDay-startDay;    
  6. }    
  7. @end    

    使用Category來計算不同時代(AD|BC)兩個日期的天數:

C代碼  

ios日期格式轉換
  1. @implementation NSCalendar (MyOtherMethod)    
  2. -(NSInteger) daysFromDate:(NSDate *) startDate toDate:(NSDate *) endDate {    
  3.      NSCalendarUnit units=NSEraCalendarUnit | NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit;    
  4.      NSDateComponents *comp1=[self components:units fromDate:startDate];    
  5.      NSDateComponents *comp2=[self components:units fromDate endDate];    
  6.      [comp1 setHour:12];    
  7.      [comp2 setHour:12];    
  8.      NSDate *date1=[self dateFromComponents: comp1];    
  9.      NSDate *date2=[self dateFromComponents: comp2];    
  10.      return [[self components:NSDayCalendarUnit fromDate:date1 toDate:date2 options:0] day];    
  11. }    
  12. @end   

    判斷一個日期是否在目前一周内(使用格裡高利曆):

C代碼  

ios日期格式轉換
  1. -(BOOL)isDateThisWeek:(NSDate *)date {    
  2.      NSDate *start;    
  3.      NSTimeInterval extends;    
  4.      NSCalendar *cal=[NSCalendar autoupdatingCurrentCalendar];    
  5.      NSDate *today=[NSDate date];    
  6.      BOOL success= [cal rangeOfUnit:NSWeekCalendarUnit startDate:&start interval: &extends forDate:today];    
  7.      if(!success)    
  8.         return NO;    
  9.      NSTimeInterval dateInSecs = [date timeIntervalSinceReferenceDate];    
  10.      NSTimeInterval dayStartInSecs= [start timeIntervalSinceReferenceDate];    
  11.      if(dateInSecs > dayStartInSecs && dateInSecs < (dayStartInSecs+extends)){    
  12.           return YES;    
  13.      }    
  14.      else {    
  15.           return NO;    
  16.      }    
  17. }    

來源:http://blog.csdn.net/lingedeng/article/details/6996599

1、擷取目前時間

C代碼  

ios日期格式轉換
  1. NSDateFormatter*formatter = [[NSDateFormatteralloc] init];  
  2. [formatter setDateFormat:@"yyyy-MM-dd hh:mm:ss"];  
  3. NSString *locationString=[formatter stringFromDate: [NSDate date]];  

另外的方法:

C代碼  

ios日期格式轉換
  1. -(NSString *)getDate  
  2. {  
  3. NSDateFormatter*formatter = [[NSDateFormatteralloc] init];  
  4. [formatter setDateFormat:@"yyyy-MM-dd EEEE HH:mm:ss a"];  
  5. NSString *locationString=[formatter stringFromDate: [NSDate date]];  
  6. [formatter release];  
  7. return locationString;  
  8. }  

//大寫的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

2、NSTimer定時器的基本操作方式

NSTimer是Cocoa中比較常用的定時器類,基本操作如下:

handleTimer方法可以自行定義。在需要的地方建立timer即可,handleTimer就可以每0.5秒執行一次。

C代碼  

ios日期格式轉換
  1.  - (void) handleTimer: (NSTimer *) timer  
  2. {  
  3.    //在這裡進行處理  
  4. }   
  5. NSTimer *timer;  
  6. timer = [NSTimer scheduledTimerWithTimeInterval: 0.5 target: self selector: @selector(handleTimer:)userInfo: nil repeats: YES];  

3、定時器

設定定時器下面顯示的定時器将在一秒鐘後觸發,并一直重複直到定時器被禁用。定時器每次激活時,就會調用發送選擇器消息的目标來進行初始化。回調方法帶有一個參數,就是定時器本身.要禁用一個定時器,給它發送invalidate消息,這将釋放定時器對象并把它從目前運作循環中删除。

C代碼  

ios日期格式轉換
  1. NSTime *timer ;  
  2. timer = [NSTimer scheduledTimerWithTimeInterval:1.0target:self selector:@selector(handlTimer:) userInfo:nilrepeats:YES];  
  3. - (void)handleTimer:(NSTimer *)timer{  
  4. printf("timer count: %d", count++);  
  5. if(count > 3)  
  6. {  
  7. [timer invalidate];  
  8. }  

來源: http://blog.csdn.net/imekong/article/details/7041312

1. 使用 NSTimeZone 取得世界各地時間的方法

 下列程式碼将示範,如何利用 NSTimeZone 取得世界上已知的時區名稱,并且透過這些名稱來獲得當地時間,如果在系統時間的取得上有任何疑問,可以參考取得 iOS 系統日期與星期的方法一文,其程式碼如下。

C代碼  

ios日期格式轉換
  1. //取得目前已知的所有地裡名稱  
  2. NSArray *timeZoneNames = [NSTimeZone knownTimeZoneNames];   
  3. //取得本地目前時間  
  4. NSDate *date = [NSDate date];   
  5. for(NSString *name in timeZoneNames) {   
  6. NSTimeZone *timezone = [[NSTimeZone alloc] initWithName:name];   
  7. NSDateFormatter *formatter = [[NSDateFormatter alloc] init];   
  8. //設定時間格式  
  9. [formatter setDateFormat:@"YYYY-MM-d HH:mm:ss"];   
  10. //設定時區  
  11. [formatter setTimeZone:timezone];   
  12. //時間格式正規化并做時區校正  
  13. NSString *correctDate = [formatter stringFromDate:date];  
  14. NSLog(@"地點:%@ 當地時間:%@",[timezone name], correctDate);   
  15. [formatter release];   
  16. [timezone release];   
  17. }