我正在开发需要在特定时间(准确地说是每小时15分钟)被调用方法的应用程序。有没有办法在不消耗大量CPU和电池寿命的情况下实现这一目标?我尝试搜索,但找不到任何答案。

最佳答案

他们使这变得非常容易。分配NSTimer,并使用以下日期将其初始化为开始日期:

-(id)initWithFireDate:(NSDate *)date
      interval:(NSTimeInterval)seconds
      target:(id)target
      selector:(SEL)aSelector
      userInfo:(id)userInfo
      repeats:(BOOL)repeats


然后使用以下命令将其添加到运行循环中:

-(void)addTimer:(NSTimer *)aTimer forMode:(NSString *)mode


在运行循环中[NSRunLoop currentRunLoop]。不知道这是否会唤醒设备或阻止其进入睡眠状态。

编辑一些示例代码

// start in 5 minutes
NSDate *date = [NSDate dateWithTimeIntervalSinceNow:300];

// fire every minute from then on
NSTimer *t = [[NSTimer alloc]
    initWithFireDate:date
    interval:60
    target:self
    selector:@selector(stuff:) // -(void)stuff:(NSTimer*)theTimer
    userInfo:nil
    repeats:YES
];

// make it work
[[NSRunLoop currentRunLoop] addTimer:t forMode:NSDefaultRunLoopMode];




-(void)stuff:(NSTimer*)theTimer
{
    if ( done ) [theTimer invalidate];
}

关于iphone - 在iPhone应用程序中,当一天中的特定时间到达时,如何获得通知?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3320859/

10-12 02:04