美文网首页
iOS定时任务

iOS定时任务

作者: 像风一样的孩子丶 | 来源:发表于2016-09-29 17:08 被阅读517次

定时任务可以使用NSTimer.也可以使用本地推送UILocalNotification.

1.NSTimer
设定个时间就行了.(使用NSTimer的block初始化,要注意防止循环引用)

NSTimer *timer = [NSTimer timerWithTimeInterval:66 repeats:YES block:^(NSTimer * _Nonnull timer) {
    //执行你的代码
 }];

当然也可以指定一个时间触发.比如下方指定每天的某一点触发(首先保证程序不被kill掉的情况下).

- (void)timingTask {
    //首先获取一个时间
    NSDate *date = [NSDate date];
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:@"yyyy.MM.dd"];
    NSString *dateStr = [dateFormatter stringFromDate:date];
    //设置一个时间点. 比如 16:16:16
    NSString *newDateStr = [NSString stringWithFormat:@"%@ 16:16:16", dateStr];
    [dateFormatter setDateFormat:@"yyyy.MM.dd HH:mm:ss"];
    NSDate *newDate = [dateFormatter dateFromString:newDateStr];


    //然后初始化一个NSTimer.
    //一天的秒数是86400.然后设置重复repeats:YES.指定执行哪个方法.
    //最后添加到runloop就行了.从你运行代码的当天起,就开始执行了.
    NSTimer *timer  = [[NSTimer alloc] initWithFireDate:newDate interval:10 target:self selector:@selector(timeTrigger) userInfo:nil repeats:YES];
    [[NSRunLoop currentRunLoop] addTimer:timer forMode:NSDefaultRunLoopMode];

}

- (void)timeTrigger {
    NSLog(@"触发了");
}

2.UILocalNotification(类似闹钟的东西)
①.定时推送(http://www.jianshu.com/p/3ed1db4fa538)

②.类似闹钟的(每天定时任务)

- (void)alarmClock {
    //首先获取一个时间
    NSDate *date = [NSDate date];
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:@"yyyy.MM.dd"];
    NSString *dateStr = [dateFormatter stringFromDate:date];
    //设置一个时间点. 比如 16:16:16
    NSString *newDateStr = [NSString stringWithFormat:@"%@ 16:16:16", dateStr];
    [dateFormatter setDateFormat:@"yyyy.MM.dd HH:mm:ss"];
    NSDate *newDate = [dateFormatter dateFromString:newDateStr];
    
    //然后创建个本地推送.
    UILocalNotification *localNotification = [[UILocalNotification alloc] init];
    if (localNotification) {
        localNotification.fireDate = newDate;
        localNotification.timeZone = [NSTimeZone defaultTimeZone];
        localNotification.repeatInterval = NSCalendarUnitDay;//设置每天重复
        localNotification.alertTitle = @"闹钟";
        localNotification.alertBody = @"懒虫起床了!~~";
        localNotification.alertAction = @"再睡会~";
        //如果有需要传的东西可以设置一下userInfo
        localNotification.userInfo = @{@"key": @"value"};
        [[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
    }
}

最后你每天就可以收到推送了.当然你也可以设置一下音频,

 localNotification.soundName = UILocalNotificationDefaultSoundName;

但是如果需要将本地推送删除或者替换掉.需要从本地通知数组中遍历查找.然后再进行操作.

- (void)searchMyLocalNotification {
    NSArray *locArr = [[UIApplication sharedApplication] scheduledLocalNotifications];
    for (UILocalNotification *localNotification in locArr) {
        NSDictionary *userInfo = localNotification.userInfo;
        //你可以通过userInfo中的数据(key和value)来判断是不是你想要的通知
        
        //然后你可以删除此通知,或者将此通知替换掉
    }
}

删除本地通知的代码

[[UIApplication sharedApplication] cancelLocalNotification:localNotification];

注:以上有什么不对的地方,还请大家指出.共同进步啊!

相关文章

  • iOS中的网络和多线程编程(十)

    摘自《iOS程序员面试笔试宝典》 iOS中如何触发定时任务或延时任务 定时任务指周期性地调用某个方法,实现任务的反...

  • IOS 定时任务

    开启 定时任务内容 结束任务

  • iOS定时任务

    定时任务可以使用NSTimer.也可以使用本地推送UILocalNotification. 1.NSTimer设定...

  • iOS 定时任务

    方法1 performSelector 方法2 GCD 方法3 NSTimer

  • iOS - 定时任务

    定时任务就是一定时间内或一定时间之后做某事,一共三个方法。 现在要执行的操作是,2秒之后执行begin这个方法。 ...

  • iOS定时器NSTimer内存泄露原理分析+解决方案

    一、NSTimer简介 NSTimer是iOS开发执行定时任务时常用的类,它支持定制定时任务的开始执行时间、任务时...

  • iOS 中的定时器

    定时器常用来做一些定时任务,iOS定时 实现有如下 NSTimer,0.1s 误差 50-100 millisec...

  • iOS 中定时任务

    1. [self performSelector:@selector() withObject:nil afte...

  • iOS-定时任务

    方法1:performSelector 方法2:GCD 方法3:NSTimer

  • iOS定时器任务

    有3种方式:CADisplayLink 、NSTimer、GCD CADisplayLink 特点:屏幕刷新时触发...

网友评论

      本文标题:iOS定时任务

      本文链接:https://www.haomeiwen.com/subject/rutlyttx.html