ios 對日期的處理(包括計算昨天時間、明天時間)

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



Dates

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

        若是你要建立date對象並表示當前日期,你能夠alloc一個NSDate對象並調用init初始化:

C代碼 

NSDate *now = [[NSDate alloc] init];   

 

         
或者使用NSDate的date類方法來建立一個日期對象。若是你須要與當前日期不一樣的日期,你可使用NSDate的
initWithTimeInterval...或dateWithTimeInterval...方法,你也可使用更復雜的calendar或
date components對象。



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

C代碼 

NSTimeInterval secondsPerDay = 24 * 60 * 60;    

   
//明天時間
NSDate *tomorrow = [[NSDate alloc] initWithTimeIntervalSinceNow:secondsPerDay];    

   
//昨天時間
NSDate *yesterday = [[NSDate alloc] initWithTimeIntervalSinceNow:-secondsPerDay];   

   

[tomorrow release];   

[yesterday release];   

 

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

C代碼 

NSTimeInterval secondsPerDay = 24 * 60 * 60;   

   

NSDate *today = [[NSDate alloc] init];   

NSDate *tomorrow, *yesterday;   

   

tomorrow = [today dateByAddingTimeInterval: secondsPerDay];   

yesterday = [today dateByAddingTimeInterval: -secondsPerDay];   

   

[today release];   



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

C代碼 

if (fabs([date2 timeIntervalSinceDate:date1]) < 60) ...  



NSCalendar & NSDateComponents



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



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



        你能夠經過NSCalendar對象的currentCalendar方法來得到當前系統用戶設置的日曆。

C代碼 

NSCalendar *currentCalendar = [NSCalendar currentCalendar];   

NSCalendar *japaneseCalendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSJapaneseCalendar];   

NSCalendar *usersCalendar = [[NSLocale currentLocale] objectForKey:NSLocaleCalendar];   



        usersCalendar和currentCalendar對象是相等的,儘管他們是不一樣的對象。



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

C代碼 

NSDateComponents *components = [[NSDateComponents alloc] init];   

   

[components setDay:6];   

[components setMonth:5];   

[components setYear:2004];   

   

NSInteger weekday = [components weekday]; // Undefined (== NSUndefinedDateComponent)   



        要將一個日期對象解析到相應的date components,你可使用NSCalendar的components:fromDate:方法。此外日期自己,你須要指定NSDateComponents對象返回組件。

C代碼 

NSDate *today = [NSDate date];   

   

NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];   

   

NSDateComponents *weekdayComponents = [gregorian components:(NSDayCalendarUnit | NSWeekdayCalendarUnit) fromDate:today];   

   

NSInteger day = [weekdayComponents day];   

NSInteger weekday = [weekdayComponents weekday]; 



一樣你也能夠從NSDateComponents對象來建立NSDate對象: 

C代碼 

NSDateComponents *components = [[NSDateComponents alloc] init];   

   

[components setWeekday:2]; // Monday   

[components setWeekdayOrdinal:1]; // The first Monday in the month   

[components setMonth:5]; // May   

[components setYear:2008];   

   

NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];   

   

NSDate *date = [gregorian dateFromComponents:components];   



        爲了保證正確的行爲,您必須確保使用的組件在日曆上是有意義的。指定「出界」日曆組件,如一個-6或2月30日在公曆中的日期值產生未定義的行爲。



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

C代碼 

NSDateComponents *components = [[NSDateComponents alloc] init];   

   

[components setMonth:11];   

[components setDay:7];   

   

NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];   

   

NSDate *birthday = [gregorian dateFromComponents:components];  



下面的示例顯示瞭如何從一個日曆置換到另外一個日曆:

C代碼 

NSDateComponents *comps = [[NSDateComponents alloc] init];   

   

[comps setDay:6];   

[comps setMonth:5];   

[comps setYear:2004];   

   

NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];   

   

NSDate *date = [gregorian dateFromComponents:comps];   

   

[comps release];   

[gregorian release];   

   

NSCalendar *hebrew = [[NSCalendar alloc] initWithCalendarIdentifier:NSHebrewCalendar];   

   

NSUInteger unitFlags = NSDayCalendarUnit | NSMonthCalendarUnit | NSYearCalendarUnit;   

   

NSDateComponents *components = [hebrew components:unitFlags fromDate:date];   

   

NSInteger day = [components day]; // 15   

NSInteger month = [components month]; // 9   

NSInteger year = [components year]; // 5764   



曆法計算



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

C代碼 

NSDate *today = [[NSDate alloc] init];   

   

NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];   

   

NSDateComponents *offsetComponents = [[NSDateComponents alloc] init];   

   

[offsetComponents setHour:1];   

[offsetComponents setMinute:30];   

   

// Calculate when, according to Tom Lehrer, World War III will end   

NSDate *endOfWorldWar3 = [gregorian dateByAddingComponents:offsetComponents toDate:today options:0];   



    得到當前星期中的星期天(使用格里高利曆):

C代碼 

NSDate *today = [[NSDate alloc] init];   

   

NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];   

   

// Get the weekday component of the current date   

NSDateComponents *weekdayComponents = [gregorian components:NSWeekdayCalendarUnit fromDate:today];   

   

/*  

Create a date components to represent the number of days to subtract from the current date.  

  

The weekday value for Sunday in the Gregorian calendar is 1, so
subtract 1 from the number of days to subtract from the date in
question.  (If today is Sunday, subtract 0 days.)  

*/   

   

NSDateComponents *componentsToSubtract = [[NSDateComponents alloc] init];   

   

[componentsToSubtract setDay: 0 - ([weekdayComponents weekday] - 1)];   

   

NSDate *beginningOfWeek = [gregorian dateByAddingComponents:componentsToSubtract toDate:today options:0];   

   

/*  

Optional step:  

beginningOfWeek now has the same hour, minute, and second as the original date (today).  

  

To normalize to midnight, extract the year, month, and day components and create a new date from those components.  

*/   

   

NSDateComponents *components = [gregorian
components:(NSYearCalendarUnit | NSMonthCalendarUnit |
NSDayCalendarUnit) fromDate: beginningOfWeek];   

   

beginningOfWeek = [gregorian dateFromComponents:components];   



    如何能夠計算出一週的第一天(根據系統的日曆設置):

C代碼 

NSDate *today = [[NSDate alloc] init];   

   

NSDate *beginningOfWeek = nil;   

   

BOOL ok = [gregorian rangeOfUnit:NSWeekCalendarUnit startDate:&beginningOfWeek interval:NULL forDate: today];   



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

C代碼 

NSDate *startDate = ...;   

NSDate *endDate = ...;   

   

NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];   

   

NSUInteger unitFlags = NSMonthCalendarUnit | NSDayCalendarUnit;   

   

NSDateComponents *components = [gregorian components:unitFlags fromDate:startDate toDate:endDate options:0];   

   

NSInteger months = [components month];   

NSInteger days = [components day]; 



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

C代碼 

@implementation NSCalendar (MySpecialCalculations)   

   

-(NSInteger)daysWithinEraFromDate:(NSDate *) startDate toDate:(NSDate *) endDate {   

     NSInteger startDay=[self ordinalityOfUnit:NSDayCalendarUnit inUnit: NSEraCalendarUnit forDate:startDate];   

   

     NSInteger endDay=[self ordinalityOfUnit:NSDayCalendarUnit inUnit: NSEraCalendarUnit forDate:endDate];   

   

     return endDay-startDay;   

}   

   

@end   



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

C代碼 

@implementation NSCalendar (MyOtherMethod)   

   

-(NSInteger) daysFromDate:(NSDate *) startDate toDate:(NSDate *) endDate {   

   

     NSCalendarUnit units=NSEraCalendarUnit | NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit;   

   

     NSDateComponents *comp1=[self components:units fromDate:startDate];   

     NSDateComponents *comp2=[self components:units fromDate endDate];   

   

     [comp1 setHour:12];   

     [comp2 setHour:12];   

   

     NSDate *date1=[self dateFromComponents: comp1];   

     NSDate *date2=[self dateFromComponents: comp2];   

   

     return [[self components:NSDayCalendarUnit fromDate:date1 toDate:date2 options:0] day];   

}   

   

@end  



    判斷一個日期是否在當前一週內(使用格里高利曆):

C代碼 

-(BOOL)isDateThisWeek:(NSDate *)date {   

   

     NSDate *start;   

     NSTimeInterval extends;   

   

     NSCalendar *cal=[NSCalendar autoupdatingCurrentCalendar];   

     NSDate *today=[NSDate date];   

   

     BOOL success= [cal rangeOfUnit:NSWeekCalendarUnit startDate:&start interval: &extends forDate:today];   

   

     if(!success)   

        return NO;   

   

     NSTimeInterval dateInSecs = [date timeIntervalSinceReferenceDate];   

     NSTimeInterval dayStartInSecs= [start timeIntervalSinceReferenceDate];   

   

     if(dateInSecs > dayStartInSecs && dateInSecs < (dayStartInSecs+extends)){   

          return YES;   

     }   

     else {   

          return NO;   

     }   

}   





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







一、獲取當前時間



C代碼 

NSDateFormatter*formatter = [[NSDateFormatteralloc] init]; 

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

NSString *locationString=[formatter stringFromDate: [NSDate date]]; 



另外的方法:



C代碼 

-(NSString *)getDate 



NSDateFormatter*formatter = [[NSDateFormatteralloc] init]; 

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

NSString *locationString=[formatter stringFromDate: [NSDate date]]; 

[formatter release]; 

return locationString; 





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



二、NSTimer定時器的基本操做方式

NSTimer是Cocoa中比較經常使用的定時器類,基本操做以下:

handleTimer方法能夠自行定義。在須要的地方建立timer便可,handleTimer就能夠每0.5秒執行一次。



C代碼 

- (void) handleTimer: (NSTimer *) timer 



   //在這裏進行處理 

}  

NSTimer *timer; 

timer = [NSTimer scheduledTimerWithTimeInterval: 0.5 target: self
selector: @selector(handleTimer:)userInfo: nil repeats: YES]; 



三、定時器

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

C代碼 

NSTime *timer ; 

timer = [NSTimer scheduledTimerWithTimeInterval:1.0target:self selector:@selector(handlTimer:) userInfo:nilrepeats:YES]; 

 

- (void)handleTimer:(NSTimer *)timer{ 

printf("timer count: %d", count++); 

if(count > 3) 



[timer invalidate]; 





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





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

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

C代碼 

//取得目前已知的全部地裏名稱 

NSArray *timeZoneNames = [NSTimeZone knownTimeZoneNames];  

 

//取得本地目前時間 

NSDate *date = [NSDate date];  

 

for(NSString *name in timeZoneNames) {  

NSTimeZone *timezone = [[NSTimeZone alloc] initWithName:name];  

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

 

//設定時間格式 

[formatter setDateFormat:@"YYYY-MM-d HH:mm:ss"];  

 

//設定時區 

[formatter setTimeZone:timezone];  

 

//時間格式正規化並作時區校訂 

NSString *correctDate = [formatter stringFromDate:date]; 

 

NSLog(@"地點:%@ 當地時間:%@",[timezone name], correctDate);  

 

[formatter release];  

[timezone release];  





因爲能取得的地點至關多,下圖只是部份的執行結果。









來源: http://furnacedigital.blogspot.com/2011/10/nstimezone.html





2. 取得 iOS 系統日期與星期的方法







在以前的文章中已經說明如何取得 Device 裏的 iOS 系統時間,在此將在示範如何使用 NSDate 取得系統的日期與星期,請看如下程式碼。

C代碼 

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

NSDate *date = [NSDate date];  

 

//正規化的格式設定 

[formatter setDateFormat:@"YYYY-MM-dd' 'EEEE"]; 

 

//正規化取得的系統時間並顯示 

dateLabel.text = [formatter stringFromDate:date]; 



固然 NSFormatter 能正規化的格式不僅這些,想知道其餘的參數能夠參考關於 NSDateFormatter 的二三事一文。



3. 取得 iOS 系統時間的方法







如何取得 Device 裏的 iOS 系統時間,能夠參考如下程式碼。

C代碼 

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

NSDate *date = [NSDate date]; 

 

//正規化的格式設定 

[formatter setTimeStyle:NSDateFormatterFullStyle]; 

 

//正規化取得的系統時間並顯示 

timeLabel.text = [formatter stringFromDate:date]; 

 

[formatter release]; 



在時間格式正規化的部份也有多種樣式可供選擇,其樣式以下。

C代碼 

[formatter setTimeStyle:NSDateFormatterFullStyle]; 

[formatter setTimeStyle:NSDateFormatterLongStyle]; 

[formatter setTimeStyle:NSDateFormatterMediumStyle]; 

[formatter setTimeStyle:NSDateFormatterShortStyle]; 



最後,若是要讓時間與現實時間同步能夠考慮實作計時器 Timer 來解決此問題,詳細的設定方式可參閱 Timer / 計時器的基本使用方法。



來源:http://furnacedigital.blogspot.com/2011/01/blog-post.html#more





4. Timer / 計時器的基本使用方法



這裏介紹 Timer 的基本使用方法,首先設定 Timer 的相關的參數,程式碼以下。(View-based Template)

C代碼 

//自行定義的函式,用來設定使用Timer/計時器的相關參數 

-(void)initializeTimer { 

 

//設定Timer觸發的頻率,每秒30次 

float theInterval = 1.0/30.0; 

fpsLabel.text = [NSString stringWithFormat:@"%0.3f", theInterval]; 

 

//正式啓用Timer,selector是設定Timer觸發時所要呼叫的函式 

[NSTimer scheduledTimerWithTimeInterval:theInterval  

target:self 

selector:@selector(countTotalFrames:)  

userInfo:nil 

repeats:YES]; 





   上述程式碼,已經完成 Timer 的基本設定,而下列程式碼則是 Timer 觸發時所呼叫的函式寫法。

C代碼 

-(void)countTotalFrames:(NSTimer *)theTimer { 

frameCount ++; 

framesLabel.text = [NSString stringWithFormat:@"%d", frameCount]; 





最後,別忘記在程式進入點這邊要呼叫自行定義的 initializeTimer 函式,才能讓 Timer 運做。
 html

相關文章
相關標籤/搜索