iOS判断用户是否打开APP通知开关
程序员文章站
2023-12-22 20:30:10
一.前言
在多数移动应用中任何时候都只能有一个应用程序处于活跃状态,如果其他应用此刻发生了一些用户感兴趣的那么通过通知机制就可以告诉用户此时发生的事情。ios中通知机...
一.前言
在多数移动应用中任何时候都只能有一个应用程序处于活跃状态,如果其他应用此刻发生了一些用户感兴趣的那么通过通知机制就可以告诉用户此时发生的事情。ios中通知机制又叫消息机制,其包括两类:一类是本地通知;另一类是推送通知,也叫远程通知。两种通知在ios中的表现一致,可以通过横幅或者弹出提醒两种形式告诉用户,并且点击通知可以会打开应用程序,但是实现原理却完全不同。
二.代码如下
@interface appdelegate () @end @implementation appdelegate - (bool)application:(uiapplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions { //开启通知 if ([[uiapplication sharedapplication]currentusernotificationsettings].types!=uiusernotificationtypenone) { [self addlocalnotification]; }else{ [[uiapplication sharedapplication]registerusernotificationsettings:[uiusernotificationsettings settingsfortypes:uiusernotificationtypealert|uiusernotificationtypebadge|uiusernotificationtypesound categories:nil]]; } return yes; } #pragma mark 添加本地通知 -(void)addlocalnotification{ //定义本地通知对象 uilocalnotification *notification=[[uilocalnotification alloc]init]; //调用通知 [[uiapplication sharedapplication] schedulelocalnotification:notification]; } #pragma mark 移除本地通知,在不需要此通知时记得移除 -(void)removenotification{ [[uiapplication sharedapplication] cancelalllocalnotifications]; } @end
三.效果图
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读