ios本地推送

#import "AppDelegate.h"

@interface AppDelegate ()

@end

@implementation AppDelegate

//无论程序在前后台运行,只要接收到通知,就会调用此方法

-(void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification

{

NSLog(@"%@",notification);

//添加控件,接收显示到的信息

UILabel *label=[[UILabel alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];

label.backgroundColor=[UIColor grayColor];

label.text=[NSString stringWithFormat:@"%@",notification];

[self.window.rootViewController.view addSubview:label];

}

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

// Override point for customization after application launch.

UILocalNotification *info=launchOptions[UIApplicationLaunchOptionsLocalNotificationKey];

if (info) {

UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 320, 300)];

label.backgroundColor = [UIColor orangeColor];

[self.window.rootViewController.view addSubview:label];

//取出携带信息

label.numberOfLines = 0;

//NSDictionary *dict = info[@"UIConcreteLocalNotification"];

// NSArray *keys = [info allKeys];

//for (NSString *str in keys) {

//   label.text = [NSString stringWithFormat:@"%@",str];

//}

//NSDictionary *dict1 = dict[@"user info"];

label.text = [NSString stringWithFormat:@"%@",info.userInfo];

//跳转对应的界面

}

return YES;

}

@end

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {

[super viewDidLoad];

//iOS8之后 需要注册通知类型  包含哪些(声音,图标文字,文本) 信息

/*

UIUserNotificationTypeNone    = 0,

UIUserNotificationTypeBadge   = 1 << 0, 包含图标文字  0001

UIUserNotificationTypeSound   = 1 << 1, // 声音      0010

UIUserNotificationTypeAlert   = 1 << 2, // 主题内容  0100

*/

UIUserNotificationSettings *setting=[UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeBadge|UIUserNotificationTypeSound categories:nil];

//注册通知

[[UIApplication sharedApplication]registerUserNotificationSettings:setting];

}

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

{

//创建本地通知

UILocalNotification *local=[[UILocalNotification alloc]init];

local.alertBody=@"老易:你为什么这么爱生气?";

local.fireDate=[NSDate dateWithTimeIntervalSinceNow:3];

local.soundName=UILocalNotificationDefaultSoundName;

local.alertAction=@"约";

local.applicationIconBadgeNumber=5;

local.userInfo=@{@"name":@"大易",@"age":@"18"};

//定制通知

[[UIApplication sharedApplication]scheduleLocalNotification:local];

//    //立即发送通知

//    [[UIApplication sharedApplication]presentLocalNotificationNow:local];

//    //取消本地所有通知

//    [[UIApplication sharedApplication]cancelAllLocalNotifications];

/*

// timer-based scheduling 定制  特定的时间发出通知

@property(nonatomic,copy) NSDate *fireDate; 触发 时间

@property(nonatomic,copy) NSTimeZone *timeZone; 时区

@property(nonatomic) NSCalendarUnit repeatInterval; 重复间隔     // 0 means don‘t repeat

@property(nonatomic,copy) NSCalendar *repeatCalendar; 重复间隔

@property(nonatomic,copy) CLRegion *region NS_AVAILABLE_IOS(8_0);//区域

@property(nonatomic,assign) BOOL regionTriggersOnce NS_AVAILABLE_IOS(8_0); //决定区域的一个bool值

// alerts

@property(nonatomic,copy) NSString *alertBody;  提醒的主题

@property(nonatomic) BOOL hasAction;                // NO 不显示滑动解锁的按钮 反之 显示

@property(nonatomic,copy) NSString *alertAction;    //滑动解锁的文字

@property(nonatomic,copy) NSString *alertLaunchImage;   //点击通知横幅的启动程序的 启动 图片

@property(nonatomic,copy) NSString *alertTitle   提示的标题文字

// sound 默认: UILocalNotificationDefaultSoundName

@property(nonatomic,copy) NSString *soundName;

// badge

@property(nonatomic) NSInteger applicationIconBadgeNumber;  //图标文字

// user info

@property(nonatomic,copy) NSDictionary *userInfo;   // 用户指定的携带参数

[UIUserNotificationSettings settingsForUserNotificationTypes:userNotificationActionSettings:]

@property (nonatomic, copy) NSString *category NS_AVAILABLE_IOS(8_0);分类

*/

}

@end

时间: 2024-10-11 12:59:25

ios本地推送的相关文章

UILocalNotification ios本地推送

Notification是智能手机应用编程中非常常用的一种传递信息的机制,而且可以非常好的节省资源,不用消耗资源来不停地检查信息状态(Pooling),在iOS下应用分为两种不同的Notification种类,本地和远程.本地的Notification由iOS下NotificationManager统一管理,只需要将封装好的本地Notification对象加入到系统Notification管理机制队列中,系统会在指定的时间激发将本地Notification,应用只需设计好处理Notificati

ios本地推送demo

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {     // Override point for customization after application launch.     //应用图标数字     application.applicationIconBadgeNumber=6;          //申请用

iOS 本地推送

在多数移动应用中任何时候都只能有一个应用程序处于活跃状态,如果其他应用此刻发生了一些用户感兴趣的那么通过通知机制就可以告诉用户此时发生的事情. iOS中通知机制又叫消息机制,其包括两类:一类是本地通知:另一类是推送通知,也叫远程通知.两种通知在iOS中的表现一致,可以通过横幅或者弹出提醒 两种形式告诉用户,并且点击通知可以会打开应用程序,但是实现原理却完全不同.今天就和大家一块去看一下如何在iOS中实现这两种机制,并且在文章后面会 补充通知中心的内容避免初学者对两种概念的混淆. 简单些了一个关于

(七十三)iOS本地推送通知的实现

iOS的推送通知分为本地推送和网络推送两种,如果App处于挂起状态,是可以发送本地通知的,如果已经被杀掉,则只有定时通知可以被执行,而类似于QQ的那种网络消息推送就无法实现了,因为App的网络模块在被杀掉后是无法执行的,这时候就要借助远程通知,通过苹果的服务器转发通知到手机,本文只介绍本地通知的用法. ①对于iOS8及以上的版本,需要注册本地通知才能使用,一般在AppDelegate中注册: if ([[UIDevice currentDevice].systemVersion doubleVa

[转载]iOS本地推送-备用

第一步:创建本地推送// 创建一个本地推送UILocalNotification *notification = [[[UILocalNotification alloc] init] autorelease];//设置10秒之后NSDate *pushDate = [NSDate dateWithTimeIntervalSinceNow:10];if (notification != nil) {    // 设置推送时间    notification.fireDate = pushDate

iOS本地推送的实现,兼容iOS8

AppDelegate.m中的代码 // AppDelegate.m中 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // 处理iOS8本地推送不能收到的问题 float sysVersion=[[UIDevice currentDevice]systemVersion].floatValue; if (sysVersio

ios本地推送互动

?    小编只是一个小白,每个app都需要推送功能,个人觉得是基础中的基础,所以自学了下推送,并且写了点小demo,也是第一次发原创博客,还请各路大神批评指导. 信息推送可以让App尚未运行的状态下可以接受一些信息,通常的推送有苹果自带的APNS推送,这个方面的知识还请自行查询学习,本文只是针对本地推送互动方面,后续会单独写APNS推送的博文,还请持续关注! 推送信息文字主要出现四个位置:1.屏幕锁定画面:2.屏幕上方下拉的“通知区域”:3.解锁后屏幕最上方的横幅的位置:4解锁后的提示位置:解

iOS本地推送与远程推送

分为本地推送和远程推送2种.可以在应用没有打开甚至手机锁屏情况下给用户以提示.它们都需要注册,注册后系统会弹出提示框(如下图)提示用户是否同意,如果同意则正常使用:如果用户不同意则下次打开程序也不会弹出该提示框,需要用户到设置里面设置.一共有三种提示类型: UIUserNotificationTypeBadge // 应用图标右上角的信息提示 UIUserNotificationTypeSound // 播放提示音 UIUserNotificationTypeAlert  // 提示框 本地推送

iOS本地推送与远程推送详解

一.简介 分为本地推送和远程推送2种.可以在应用没有打开甚至手机锁屏情况下给用户以提示.它们都需要注册,注册后系统会弹出提示框(如下图)提示用户是否同意,如果同意则正常使用:如果用户不同意则下次打开程序也不会弹出该提示框,需要用户到设置里面设置.一共有三种提示类型: UIUserNotificationTypeBadge:应用图标右上角的信息提示 UIUserNotificationTypeSound:播放提示音 UIUserNotificationTypeAlert:提示框 二.本地推送 1

iOS 本地推送 UILocalNotification

创建通知 UILocalNotification *notification = [[UILocalNotification alloc] init]; if (notification) { NSDate *now = [NSDate new]; notification.fireDate = [now dateByAddingTimeInterval:10]; //10秒后通知 notification.repeatInterval=0; //重复次数,kCFCalendarUnitWeek