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
ios本地推送的更多相关文章
- (七十三)iOS本地推送通知的实现
iOS的推送通知分为本地推送和网络推送两种,如果App处于挂起状态,是可以发送本地通知的,如果已经被杀掉,则只有定时通知可以被执行,而类似于QQ的那种网络消息推送就无法实现了,因为App的网络模块在被 ...
- 81、iOS本地推送与远程推送详解
一.简介 分为本地推送和远程推送2种.可以在应用没打开甚至手机锁屏情况下给用户以提示.它们都需要注册,注册后系统会弹出提示框(如下图)提示用户石否同意,如果同意则正常使用:如果用户不同意则下次打开程序 ...
- IOS 本地推送(UILocalNotification)
推送通知 ● 注意:这里说的推送通知跟NSNotification有所区别 • NSNotification是抽象的,不可见的 • 推送通知是可见的(能用肉眼看到) ● iOS中提供了2种推送通知 ● ...
- iOS 本地推送通知
1.什么是本地推送通知 不需要联网的情况下,应用程序经由系统发出的通知 2.本地推送的使用场景 定时提醒,如玩游戏.记账.闹钟.备忘录等 3.实现本地推送通知的步骤 创建本地推送通知的对象UILoca ...
- IOS 本地推送 IOS10.0以上 static的作用 const的作用
//需要在AppDelegate里面启动APP的函数 加上 UIUserNotificationType types = UIUserNotificationTypeBadge | UIUserNot ...
- iOS本地推送与远程推送
原文在此 分为本地推送和远程推送2种.可以在应用没有打开甚至手机锁屏情况下给用户以提示.它们都需要注册,注册后系统会弹出提示框(如下图)提示用户是否同意,如果同意则正常使用:如果用户不同意则下次打开程 ...
- [转载]iOS本地推送-备用
第一步:创建本地推送// 创建一个本地推送UILocalNotification *notification = [[[UILocalNotification alloc] init] autorel ...
- iOS本地推送与远程推送详解
一.简介 分为本地推送和远程推送2种.可以在应用没有打开甚至手机锁屏情况下给用户以提示.它们都需要注册,注册后系统会弹出提示框(如下图)提示用户是否同意,如果同意则正常使用:如果用户不同意则下次打开程 ...
- IOS 本地推送
// 1.打开本地推送并设置属性 NSString *str = @"本地推送的信息"; UIApplication *app = [UIApplication sharedApp ...
随机推荐
- Linux之图形化shell------dialog
转自:Linux dialog详解(图形化shell) | 运维生存时间 对话 UNIX: 使用 shell 脚本创建好的图形应用程序---http://www.ibm.com/developerwo ...
- [Linux]centOS7下RPM安装Perl
1.下载rpm依赖包,依照顺序安装. perl-parent-0.225-244.el7.noarch perl-HTTP-Tiny-0.033-3.el7.noarch perl-podla ...
- Ditto - Windows剪贴板增强小工具,方便复制粘贴多条记录
在平时的工作中,好多地方需要重复的复制粘帖一些重复性的代码,频繁的Ctrl+C.Ctrl+V导致效率很低,而且时间长了会很烦,Windows自带的剪切板功能一次只能进行一条记录操作,单一的不行,与提高 ...
- 3.UNION
--联合结果集union(集合运算符-- group by StudentNo union ---union可以合并多个结果集 --它有两个前提和一个注意: --1.合并的结果集的列数必须完全一致 - ...
- 【linux】ubuntu stmp服务器配置
来源:http://blog.itpub.net/786540/viewspace-1002077/ sudo apt-get install sendmail(其中已经包含了sendmail-bin ...
- php面向对象加载类、常用设计模式
加载类: include("./Ren.class.php"); include "./Ren.class.php"; 用此方法的时候include后面要加空格 ...
- CentOS 7.0 部署 Django 到运行起来第一个web service
最近在学习Python,今天发现Django如此强大的web框架,不得不来试一试. 1. 安装Python,官网建议用Python3:
- QtCreator 添加第三方头文件库文件路径
打开工程名.pro文件 添加 INCLUDEPATH += $$PWD/../../Obelisk/thirdparty/prebuilt/include/LeapSDKOrion LIBS += - ...
- 史上最全web.xml配置文件元素详解
一.web.xml配置文件常用元素及其意义预览 <web-app> <!--定义了WEB应用的名字--> <display-name></display-na ...
- EF性能调优
首先说明下: 第一次运行真是太慢了,处理9600多个员工数据,用了81分钟!! 代码也挺简单,主要是得到数据-->对比分析-->插入分析结果到数据库.用的是EF的操作模式. public ...