1、打开推送
在打开的方法里写入一下代码:
// 打开推送
[JPUSHService registerForRemoteNotificationTypes:(UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert) categories:nil];
2、关闭推送
在关闭的方法里写入一下代码:
// 关闭推送
[[UIApplication sharedApplication] unregisterForRemoteNotifications];
网友评论