`

iOS创建本地通知和删除对应的通知,工作日通知

 
阅读更多

本文的代码主要是:创建本地通知,删除对应的本地通知,创建工作日闹钟

直接上代码:

复制代码
//
//  ViewController.m
//  LocalNSNotification
//
//  Created by wusiping on 16/1/27.
//  Copyright © 2016年 wusiping. All rights reserved.
//

#import "ViewController.h"
#define LOCAL_NOTIFY_SCHEDULE_ID @"hahahhahahhah"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    UIButton *createBtn = [[UIButton alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
    [createBtn setTitle:@"创建通知" forState:UIControlStateNormal];
    createBtn.titleLabel.textColor = [UIColor blackColor];
    createBtn.backgroundColor = [UIColor lightGrayColor];
    [createBtn addTarget:self action:@selector(createNSNotification) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:createBtn];
    
    UIButton *cancelBtn = [[UIButton alloc]initWithFrame:CGRectMake(100, 300, 100, 100)];
    [cancelBtn setTitle:@"删除通知" forState:UIControlStateNormal];
    cancelBtn.titleLabel.textColor = [UIColor blackColor];
    cancelBtn.backgroundColor = [UIColor lightGrayColor];
    [cancelBtn addTarget:self action:@selector(cancelNSNotification) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:cancelBtn];

}


- (NSDate *)getCurrrentTimeToSS
{
    NSDateFormatter *formatter = [[NSDateFormatter alloc]init];
    [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    [formatter dateFormat];
    [NSDate date];
    return [NSDate date];
    
}

- (void)createNSNotification{
    
    UILocalNotification *localNotification = [[UILocalNotification alloc] init];
    if (localNotification == nil) {
        return;
    }
    //设置本地通知的触发时间(如果要立即触发,无需设置),这里设置为20妙后
    localNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:20];
    //设置本地通知的时区
    localNotification.timeZone = [NSTimeZone defaultTimeZone];
    //设置通知的内容
    localNotification.alertBody = @"hahhah";
    //设置通知动作按钮的标题
    localNotification.alertAction = @"查看";
    //设置提醒的声音,可以自己添加声音文件,这里设置为默认提示声
    localNotification.soundName = UILocalNotificationDefaultSoundName;
    //设置通知的相关信息,这个很重要,可以添加一些标记性内容,方便以后区分和获取通知的信息
    NSDictionary *dict =[NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithInt:9529],@"nfSignInkey",nil];
    [localNotification setUserInfo:dict];

    // ios8后,需要添加这个注册,才能得到授权
    if ([[UIApplication sharedApplication] respondsToSelector:@selector(registerUserNotificationSettings:)]) {
        UIUserNotificationType type =  UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound;
        UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:type
                                                                                 categories:nil];
        [[UIApplication sharedApplication] registerUserNotificationSettings:settings];
        // 通知重复提示的单位,可以是天、周、月
        localNotification.repeatInterval = NSCalendarUnitDay;
    } else {
        // 通知重复提示的单位,可以是天、周、月
        localNotification.repeatInterval = NSDayCalendarUnit;
    }

    //在规定的日期触发通知
    [[UIApplication sharedApplication] scheduleLocalNotification:localNotification];

}


/**
 *  删除当前的通知
 */

- (void)cancelNSNotification{
    
    //   手动删除通知
    //   这里我们要根据我们添加时设置的key和自定义的ID来删
        NSArray *narry=[[UIApplication sharedApplication] scheduledLocalNotifications];
        NSUInteger acount=[narry count];
        if (acount>0)
        {
            // 遍历找到对应nfkey和notificationtag的通知
            for (int i=0; i<acount; i++)
            {
                UILocalNotification *myUILocalNotification = [narry objectAtIndex:i];
                NSDictionary *userInfo = myUILocalNotification.userInfo;
                NSNumber *obj = [userInfo objectForKey:@"nfSignInkey"];
                int mytag=[obj intValue];
                if (mytag==9529)
                {
                    // 删除本地通知
                    [[UIApplication sharedApplication] cancelLocalNotification:myUILocalNotification];
                    break;
                }
            }
        }
}

@end

大家可能会遇到工作日闹钟这种需求:
复制代码
 if ([cycle isEqual:@"工作日"]) {//如果是工作日闹钟
            NSDate *now=select;//当前时间
            NSCalendar *gregorian = [NSCalendar currentCalendar];
            NSDateComponents *dateComps = [gregorian components:NSWeekdayCalendarUnit fromDate:now];
            NSInteger daycount = [dateComps weekday]-2;
            NSDate *weekdaybegin=[now addTimeInterval:-daycount*60*60*24];
            for (int i=0;i<5;i++) {//创建5个通知:星期一到星期五
                NSDate *now= [weekdaybegin addTimeInterval:i*60*60*24];
                [self creatmessage:now];
            }
   }

-(void)creatmessage:(NSDate *)new
{
    UILocalNotification *notification=[[UILocalNotification alloc] init];
    if (notification!=nil && select!=nil &&cycle.length > 0 &&key.intValue==1)
    {
        //触发通知时间
        //[self cancelUILocalNotification];
        NSDate *now= new;
        NSLog(@"%@",now);
        NSDate *today = [self getCurrrentTimeToDay];
        BOOL isSameDay = [self isSameDay:now date2:today];
        if (isSameDay == YES){//特殊需求..这个不要管
            //今天所在的星期X,延迟一个礼拜触发。比如今天是星期三,那下个礼拜三才开始闹钟。明天是星期四,星期四的闹钟还是明天就触发

            now = [NSDate dateWithTimeInterval:24*60*60*7 sinceDate:now];
            
        }
        notification.fireDate=now;
        notification.timeZone=[NSTimeZone defaultTimeZone];
        notification.repeatInterval = kCFCalendarUnitWeek;
        notification.soundName=@"铃声.m4r";
        notification.alertBody=@"今天iSite签到没?千万不要忘了哦!";
        notification.alertAction=NSLocalizedString(@"今天iSite签到没?千万不要忘了哦!", nil);
        NSDictionary *dict =[NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithInt:9529],@"nfSignInkey",nil];
        [notification setUserInfo:dict];
        
        // 启用这个通知
        [[UIApplication sharedApplication]   scheduleLocalNotification:notification];
    }
    
}
分享到:
评论

相关推荐

    iOS8本地通知Demo

    iOS8环境下本地通知的创建 UIMutableUserNotificationCategory *shoppingListReminderCategory = [[UIMutableUserNotificationCategory alloc] init]; shoppingListReminderCategory.identifier = @...

    iOS开发本地和推送通知编程指南

    本指南主要介绍如何在iOS应用中实现本地通知和推送通知的功能。本地通知是指由应用程序自身触发的通知,而推送通知则是指通过苹果推送通知服务(Apple Push Notification service, APNs)发送至用户设备的通知。 ##...

    swift-iOS10本地通知封装

    在iOS开发中,本地通知(Local Notification)是应用在用户不活跃时与用户进行交互的重要方式,尤其在iOS10及以后的版本中,苹果引入了全新的UserNotifications框架,为本地通知提供了更强大的功能和更灵活的配置。...

    ios自定义弹出本地通知

    "ios自定义弹出本地通知"这一主题主要涉及如何在iOS应用中创建和定制本地通知,以提供独特且吸引用户的体验。下面将详细介绍这个知识点。 首先,我们需要了解本地通知的基本概念。本地通知是由应用本身发起的,而...

    iOS10.0本地推送通知.

    1. **本地通知**:与远程推送通知(通过Apple Push Notification Service, APNS)不同,本地通知是由应用本身在设备上创建和触发的,无需通过网络连接。它们在特定的时间、地点或事件发生时触发,如设定的闹钟或日程...

    IOS滚动文本通知

    当应用接收到新的数据或事件时,它可以通过苹果的本地通知框架或者远程推送通知服务向用户发送通知。以下是关于iOS滚动文本通知的一些关键知识点: 1. **通知中心**: iOS的通知中心是用户查看和管理所有未读和已读...

    ios-本地通知.zip

    在iOS系统中,本地通知(Local Notification)是应用在用户不活跃使用时向用户发送提醒的一种功能。这种通知可以由应用程序在特定的时间点或者当满足特定条件时触发,无需网络连接,因此称为本地通知。本教程将深入...

    ios 闹钟的总结-------也就是本地通知。

    - Xcode是iOS开发的主要工具,包含了创建和调试本地通知所需的所有功能。此外,`UserNotifications`框架提供了必要的API来处理本地通知。 总之,本地通知是iOS应用与用户进行交互的重要手段,无论是在设定的特定...

    ios本地和远程推送通知编程指南

    创建本地通知涉及定义通知的触发时间、内容以及任何附加数据。开发者可以使用`UNUserNotificationCenter`类来安排本地通知,包括一次性通知和重复性通知。 ##### 2.3 处理远程推送通知 为了接收远程推送通知,应用...

    iOS10通知及通知拓展Extension使用

    但在iOS10中,苹果引入了UNUserNotificationCenter,这个新框架提供了对本地和远程通知的统一管理,包括请求权限、创建通知、调度通知等操作。例如,你可以通过`UNUserNotificationCenter.current()....

    IOS开发本地和推送通知编程指南

    在iOS开发中,本地通知和推送通知是两种用于在应用程序不在前台运行时提醒用户的重要机制。它们通常用于告知用户有新消息、即将到来的日程安排或者需要更新的数据等事件。本指南将介绍如何在iOS平台上实现本地通知和...

    iOS本地通知代码-UILocalNotification_Demo

    这个"iOS本地通知代码-UILocalNotification_Demo"压缩包文件应该包含一个示例项目,演示了如何在iOS应用中设置和使用本地通知。 本地通知的主要用途是提升用户体验,例如提醒用户有新的消息、事件或者需要完成的...

    本地通知简单的Demo

    本地通知是iOS应用中一种重要的用户交互方式,它允许应用程序在特定时间或事件发生时向用户发送消息,即使应用没有在前台运行。本教程将通过一个简单的Demo来讲解如何实现本地通知,适合初学者入门。这个Demo适用于...

    iOS学习——通知机制-代码

    本文将深入探讨iOS的通知机制,包括本地通知(Local Notification)和远程通知(Remote Notification,也称为推送通知Push Notification)。 首先,我们要了解iOS中的通知中心(NotificationCenter),它是整个通知...

    iOS推送通知详解

    1. **创建关联App ID和开发供应配置文件的SSL证书**:这是实现推送通知的基础,证书用于建立开发者服务器与苹果推送服务之间的安全连接。 2. **配置解析程序(Parse app)**:Parse是一个流行的后端即服务平台,可...

    ios 通知实现原理

    本篇将深入探讨iOS通知的实现原理,包括本地通知和远程推送通知,以及它们在模拟环境中的工作流程。 1. **本地通知(Local Notifications)** - **定义**:本地通知是由应用程序本身在特定时间点或基于特定条件...

    iOS本地和推送通知编程指南

    iOS本地和推送通知编程指南是一份由Apple公司编写的官方文档,旨在指导开发者如何在iOS平台上实现和处理本地通知与推送通知。本地通知是应用程序在不需要服务器端支持的情况下,仅在用户的设备上触发的通知;而推送...

    ios 推送通知

    4. 使用极光推送的API发送通知,可以是通过服务器端接口或客户端API直接发送本地通知。 5. 处理接收到的通知,包括在通知到达时的回调函数和用户点击通知后的处理。 在实现推送通知时,还需要考虑以下几个方面: - ...

Global site tag (gtag.js) - Google Analytics