美文网首页
本地通知

本地通知

作者: iOS_阿辉 | 来源:发表于2017-07-15 07:42 被阅读0次

    没有第三方,

    直接写代码即可

    AppDelegate.m

    // 只有当应用在前台时,该方法才会被调用

    - (void)application:(UIApplication *)application

    didReceiveLocalNotification:(UILocalNotification*)notification{

    // 如果应用程序在前台,将应用程序图标上红色徽标中数字设为0

    application.applicationIconBadgeNumber = 0;

    // 使用UIAlertView显示本地通知的信息

    [[[UIAlertView alloc] initWithTitle:@"收到通知"

    message:notification.alertBody

    delegate:nil cancelButtonTitle:@"确定" otherButtonTitles:nil] show];

    }

    ViewController.h

    相关文章

      网友评论

          本文标题:本地通知

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