欢迎来到天天文库
浏览记录
ID:16237018
大小:32.50 KB
页数:5页
时间:2018-08-08
《ios开发中本地消息推送方法》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、第一步:接收本地推送实现代理方法didReceiveLocalNotification-(void)application:(UIApplication*)applicationdidReceiveLocalNotification:(UILocalNotification*)notification{//在此时设置解析notification,并展示提示视图}第二步:创建本地推送-(void)createLocalNotification{//创建一个本地推送UILocalNotification*notification=[[[UILocalNotifi
2、cationalloc]init]autorelease];//设置10秒之后NSDate*pushDate=[NSDatedateWithTimeIntervalSinceNow:10];if(notification!=nil){//设置推送时间notification.fireDate=pushDate;//设置时区notification.timeZone=[NSTimeZonedefaultTimeZone];//设置重复间隔notification.repeatInterval=kCFCalendarUnitDay;//推送声音notificat
3、ion.soundName=UILocalNotificationDefaultSoundName;//推送内容notification.alertBody=@"推送内容";//显示在icon上的红色圈中的数子notification.applicationIconBadgeNumber=1;//设置userinfo方便在之后需要撤销的时候使用NSDictionary*info=[NSDictionarydictionaryWithObject:@"name"forKey:@"key"];notification.userInfo=info;//添加推送到U
4、IApplicationUIApplication*app=[UIApplicationsharedApplication];[appscheduleLocalNotification:notification];}}第三步:解除本地推送-(void)removeLocalNotication{//获得UIApplicationUIApplication*app=[UIApplicationsharedApplication];//获取本地推送数组NSArray*localArray=[appscheduledLocalNotifications];//声明
5、本地通知对象UILocalNotification*localNotification;if(localArray){for(UILocalNotification*notiinlocalArray){NSDictionary*dict=noti.userInfo;if(dict){NSString*inKey=[dictobjectForKey:@"key"];if([inKeyisEqualToString:@"对应的key值"]){if(localNotification){[localNotificationrelease];localNotific
6、ation=nil;}localNotification=[notiretain];break;}}}//判断是否找到已经存在的相同key的推送if(!localNotification){//不存在初始化localNotification=[[UILocalNotificationalloc]init];}if(localNotification){//不推送取消推送[appcancelLocalNotification:localNotification];[localNotificationrelease];return;}}}
此文档下载收益归作者所有