0

我正在实施“每日奖励”方法,以便每天在我的游戏中给予一些硬币。

我有一个包含实际日期和时间的 json。

问题是我不知道如何比较日期。

这是我的代码 -

@implementation ItemRewardManager

+(NSDate *)dateFromUTCTimeStamp:(NSString *)dateString{

    NSDateFormatter *df = [[NSDateFormatter alloc] init];
    df.dateFormat = @"yyyy-MM-dd HH:mm:ss";
    NSDate *myDate = [df dateFromString: dateString];
    NSTimeZone *gmt = [NSTimeZone timeZoneWithAbbreviation:@"GMT"];
    [df setTimeZone:gmt];

    [[NSUserDefaults standardUserDefaults] setObject:myDate forKey:@"lastDatePlayed"];
    [[NSUserDefaults standardUserDefaults] synchronize];
}

-(void)getData
{
    NSData *jsonData = [NSData dataWithContentsOfURL:[NSURL URLWithString:dateUrl]];
    id jsonObjects = [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableContainers error:nil];
    NSArray *keys = [jsonObjects allKeys];

    // values in foreach loop
    for (NSString *key in keys) {
        NSLog(@"%@ is %@",key, [jsonObjects objectForKey:key]);
    }
}

+(void)dailyReward{
    NSLog(@"llega al daily");
    NSDateFormatter *dateFormat = [[NSDateFormatter alloc]init];
    [dateFormat setDateFormat:@"HH:mm:ss zzz"];

    NSDate *now = [NSDate date];
    NSString *dateString = [dateFormat stringFromDate:now];

    if([[[NSUserDefaults standardUserDefaults] objectForKey:@"lastDatePlayed"] isEqualToString: dateString])
    {
        NSLog(@"Actual date is the same as json date");
        UIAlertView* alert = [[[UIAlertView alloc] initWithTitle:nil
                                                         message:@"You have win 5 coins! Come back tomorrow for more."
                                                        delegate:nil
                                               cancelButtonTitle:@"Ok"
                                               otherButtonTitles: nil] autorelease];
        [alert show];
        return;
    }
}
@end

因此,当我打开我的应用程序并调用此方法时,我的应用程序由于某种原因崩溃了。

我认为问题可能出在两个日期的比较上。

有人可以告诉我是否有问题吗?

4

4 回答 4

3

NSDate 有比较日期的方法。他们来了:

isEqualToDate:返回一个布尔值,指示给定对象是否是 NSDate 对象并且与接收者完全相等。

- (BOOL)isEqualToDate:(NSDate *)anotherDate

laterDate:返回接收者的较晚日期和另一个给定日期。

- (NSDate *)laterDate:(NSDate *)anotherDate

earlyDate:返回接收者和另一个给定日期中较早的日期。

- (NSDate *)earlierDate:(NSDate *)anotherDate

于 2013-06-25T12:14:22.137 回答
3

使用以下。

if ([date1 compare:date2]==NSOrderedSame)

date1 和 date2 是NSdate对象。

于 2013-06-25T12:10:26.480 回答
1

像这样试试。它可以帮助你

NSDate *now = [NSDate date]; // current date
NSDate *newDate = [dateFormat dateFromString:[[NSUserDefaults standardUserDefaults] objectForKey:@"lastDatePlayed"]]; // server date 

NSComparisonResult result; 

result = [now compare:newDate]; // comparing two dates

if(result == NSOrderedAscending)
    NSLog(@"now is less");
else if(result == NSOrderedDescending)
    NSLog(@"newDate is less");
else
    NSLog(@"Both dates are same");
于 2013-06-25T12:49:28.810 回答
0

使用此代码。

 NSDate *date = [NSDate date];
NSDateFormatter *dateFormatter1 = [[NSDateFormatter alloc] init];
[dateFormatter1 setDateFormat:@"MM/dd/yyyy"];
NSDate *ServerDate = [dateFormatter1 dateFromString:@"03/01/2013"];
[dateFormatter1 release];
NSTimeInterval interval = [date timeIntervalSinceDate:ServerDate];
int diff=interval/1440;

这是实现的代码。

于 2013-06-26T05:26:31.820 回答