我正在为RKObjectManager实现超时。我的代码段如下:

-(void)getObjects
{
    RKObjectManager *sharedManager = [RKObjectManager sharedManager];

    [self showLoading];
    [sharedManager loadObjectsAtResourcePath:self.resourcePath delegate:self];

    // Setting timeout here. goto failure
    self.nTimer = [NSTimer scheduledTimerWithTimeInterval:TIMEOUT_INTERVAL target:self selector:@selector(didEncounterError) userInfo:nil repeats:NO];
}

- (void) didEncounterError
{
    [self hideLoading];
    [self standardErrorHandling];

    //invalidate timer, this is done to ensure that if error occurs before timer expiry time, the error will not show again when timer is up (ISSUE HERE)
    [self.nTimer invalidate];
}

- (void)objectLoader:(RKObjectLoader*)objectLoader didLoadObjects:(NSArray*)objects
{
    ....
    //invalidate timer if load is successful (no issue here)
    [self.nTimer invalidate];
}


- (void)objectLoader:(RKObjectLoader*)objectLoader didFailWithError:(NSError*)error
{
    ....
    //trigger encounter error method
    [self didEncounterError];
}

在上述实现中,我将始终在“遇到错误”方法中使计时器无效。这是为了缓解在计时器到期之前发生错误的情况。在这种情况下,我想使计时器无效,以防止错误信息再次弹出。

但是,在发生错误之后(计时器到期之前),我仍然第二次收到错误消息。似乎“遇到错误”方法中的无效无效。关于我的代码有什么问题的任何建议吗?

最佳答案

计时器失效应该发生在调度它的线程上,在上述情况下,它在另一个线程上被调用(回调)。您是否可以使用一种使此失效的方法,并在回调方法中使用“performSelectorOnMainThread”来调用该方法?

关于objective-c - NSTimer未失效,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7721477/

10-09 02:28