本地通知

没有第三方,

直接写代码即可


本地通知_第1张图片

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


本地通知_第2张图片


本地通知_第3张图片

你可能感兴趣的:(本地通知)