解决方案 »

  1.   


    [NSTimer scheduledTimerWithTimeInterval:600 target:self selector:@selector(timerFireMethod:) userInfo:nil repeats:NO]; 再实现一个指定的selector方法就行了:-(void)timerFireMethod:(NSTimer*)theTimer {
                NSURL *url=[NSURL URLWithString:@"toapp://com.to.app""];
                [[UIApplication sharedApplication]openURL:url];
    }
      

  2.   

    这个貌似无法实现,在ios中,如果你的应用退到后台。苹果会在10分钟后清理这个应用。
      

  3.   

    本帖最后由 totogo2010 于 2014-08-19 09:29:10 编辑