ios客户端学习-本地推送(并确定程序中只有一个弹出框)

首先创建全局的本地通知对象及弹出框

// 弹出本地消息

@property(nonatomic,strong)UILocalNotification *localNotification;

@property(nonatomic,strong)UIAlertController *alertcontrol;


其次在代码中实现如下:

- (void)application:(UIApplication *)application

didReceiveRemoteNotification:(NSDictionary *)userInfo

fetchCompletionHandler:

(void (^)(UIBackgroundFetchResult))completionHandler {

    // 判断程序是否在打开状态,即是否在前台运行的状态

    if (application.applicationState == UIApplicationStateActive) {

        // 如果之前已经接受到消息,并且用户未对弹出框进行处理,关闭原来弹出框

        if (self.localNotification) {

            [self.alertcontrol dismissViewControllerAnimated:YES completion:nil];

        }

        [self bulidLocationNotification:application userinfo:userInfo];

        

        

    }else{

        // 判断程序是否未打开状态,即是否在后台运行或关闭状态,极光推送设置角标

        if ([application applicationIconBadgeNumber]>0) {

            [JPUSHService setBadge:[application applicationIconBadgeNumber]];

        }

    }

    

    [JPUSHService handleRemoteNotification:userInfo];

    NSLog(@"收到通知:%@", [self logDic:userInfo]);

    completionHandler(UIBackgroundFetchResultNewData);

}


- (void)application:(UIApplication *)application

didReceiveLocalNotification:(UILocalNotification *)notification {

    // 弹出消息

    if (self.localNotification) {

        self.alertcontrol = [UIAlertController alertControllerWithTitle:@"" message:self.localNotification.alertBody preferredStyle:UIAlertControllerStyleAlert];

        UIAlertAction *action = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

            self.localNotification = nil;

            self.alertcontrol = nil;

        }];

        [self.alertcontrol addAction:action];

        [self.window.rootViewController presentViewController:self.alertcontrol animated:YES completion:nil];

        

    }

}


// 创建本地推送消息

-(void)bulidLocationNotification:(UIApplication *)application userinfo:(NSDictionary *)userInfo{

    self.localNotification = [[UILocalNotification alloc]init];

    self.localNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:1];

    self.localNotification.alertBody = [[userInfo objectForKey:@"aps"] objectForKey:@"alert"];

    self.localNotification.alertAction = @"确定";

    self.localNotification.soundName = @"sound.caf";

    self.localNotification.userInfo = userInfo;

    [application presentLocalNotificationNow:self.localNotification];

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值