反复调用一个函数

时间:2011-09-15 10:22:38

标签: iphone ios4 iphone-sdk-3.0 nstimer

我正在创建一个每5分钟后调用一次的函数,直到项目从后台删除。

我已经实现了NSTimer,但是它会产生问题,比如崩溃和一些难以管理的问题,

有没有办法在每5分钟后不使用计时器重复调用一个函数?

我发现一种方法是使用警报服务,但我不知道实施的方法。

编辑:样本一

if([[NSUserDefaults standardUserDefaults] boolForKey:@“IsUpdateConfigON”] == TRUE){

        //NSLog(@"*****************   One Timer to call UpdateConfig");

    NSString *updatedDate = [[NSUserDefaults standardUserDefaults] valueForKey:@"IsUpdateConfigLastUpdateTime"];    
    int time = [Global getTimeDiff:updatedDate];

        //NSLog(@"********************************** Timer value UPDATE CONGIF  %d",time);


    if(time >= 10){     

            //NSLog(@"****************** When time : %d >=  %d  :Config_Interval seconds ",time,Config_Interval);
        cls_ConfigurationJSON *objConfig = [[cls_ConfigurationJSON alloc]init];
        [objConfig loadView];
        [objConfig release];
    }
}

时间倒计时,1,2,3等。每5分钟后调用此功能。

如果有人有任何建议或代码,请帮助我。

3 个答案:

答案 0 :(得分:2)

NSTimer是经常调用方法的首选方法。发生的崩溃可能是由于与对象释放或计时器失效等相关的问题。

答案 1 :(得分:1)

当你想在一段时间后调用某个函数时,NSTimer确实是个不错的选择。如果您可以发布代码,我们将尝试解决您的崩溃问题。

线程中的其他可能选项是进行无限循环并放置wait语句。

您可以使用此无限循环调用该函数。

[NSThread detachNewThreadSelector:<#(SEL)selector#> toTarget:<#(id)target#> withObject:<#(id)argument#>]

在执行操作后,您可以使用此功能使其睡眠5分钟。

[NSThread sleepForTimeInterval:<#(NSTimeInterval)ti#>]

最后确保一旦你的应用程序进入后台,没有任何进程可以运行超过10分钟。因此,除非从背景中删除,否则我无法运行某些过程。

答案 2 :(得分:1)

nstimer是最好的选择,因为它在一个单独的线程中运行...这是我在我的代码中使用的并且没有任何问题。

{
[NSTimer scheduledTimerWithTimeInterval:5.0
                                 target:self
                               selector:@selector(checkNetworkStatus:)
                               userInfo:nil
                                repeats:YES];

return YES;
}


- (void) checkNetworkStatus:(NSNotification *)notice
{
// called after network status changes

NetworkStatus internetStatus = [internetReachable currentReachabilityStatus];
switch (internetStatus)

{
    case NotReachable:
    {
        NSLog(@"The internet is down.");
        internetConnectivity=@"NO";
        break;

    }
    case ReachableViaWiFi:
    {
        NSLog(@"The internet is working via WIFI.");
        internetConnectivity=@"YES";
        SyncRecords *obj=[[SyncRecords alloc]init];
        [obj syncData];
        break;

    }
    case ReachableViaWWAN:
    {
        NSLog(@"The internet is working via WWAN.");
        internetConnectivity=@"YES";
        SyncRecords *obj=[[SyncRecords alloc]init];
        [obj syncData];
        break;

    }
}

}