26

ここでは、2つの日付の間の時間を計算しようとしています。アプリケーションを実行すると、クラッシュします。このコードの間違いを教えてください。

NSString *lastViewedString = @"2012-04-25 06:13:21 +0000";
NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat: @"yyyy-MM-dd HH:mm:ss zzz"];

NSDate *lastViewed = [[dateFormatter dateFromString:lastViewedString] retain];
NSDate *now = [NSDate date];

NSLog(@"lastViewed: %@", lastViewed); //2012-04-25 06:13:21 +0000
NSLog(@"now: %@", now); //2012-04-25 07:00:30 +0000

NSTimeInterval distanceBetweenDates = [now timeIntervalSinceDate:lastViewed];
double secondsInAnHour = 3600;
NSInteger hoursBetweenDates = distanceBetweenDates / secondsInAnHour;

NSLog(@"hoursBetweenDates: %@", hoursBetweenDates);
4

3 に答える 3

12

ほとんど同様の質問のこの回答を参照すると、Appleが承認したより良い方法は、次のようなNSCalendarメソッドを使用することです。

- (NSInteger)hoursBetween:(NSDate *)firstDate and:(NSDate *)secondDate {
   NSUInteger unitFlags = NSCalendarUnitHour;
   NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
   NSDateComponents *components = [calendar components:unitFlags fromDate:firstDate toDate:secondDate options:0];
   return [components hour]+1;
}

iOS 8以降をターゲットにしている場合NSCalendarIdentifierGregorianは、非推奨の代わりにを使用してNSGregorianCalendarください。

于 2014-02-05T14:53:04.857 に答える
11

違いはint値にあるべきだと思います...

NSLog(@"hoursBetweenDates: %d", hoursBetweenDates);

うまくいけば、これはあなたを助けるでしょう..

于 2012-04-25T07:18:56.863 に答える
3

NSIntegerを使用して表示することはできません

NSLog(@"%@", hoursBetweenDates);

代わりに以下を使用してください:

NSLog(@"%d", hoursBetweenDates); 

使用するものがわからない場合は、Apple Developer Docsを参照してください:http: //developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html#//apple_ref/doc/uid/TP40004265

于 2012-04-25T07:20:38.937 に答える