Skip to content

dextronet/cordova-common-registerusernotificationsettings

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

npm version PayPayl donate button

[DEPRECATED] Cordova RegisterUserNotificationSettings Plugin

This plugin is deprecated, i.e. it is no longer maintained. Going forward additional features and bug fixes will be added to the new cordova-plugin-app-event repository.

Implements didRegisterUserNotificationSettings and broadcasts the event for listening plugins.

#import "AppDelegate+APPRegisterUserNotificationSettings.h"

- (void) pluginInitialize
{
    NSNotificationCenter* center = [NSNotificationCenter
                                    defaultCenter];

    [center addObserver:self
               selector:@selector(didRegisterUserNotificationSettings:)
                   name:UIApplicationRegisterUserNotificationSettings
                 object:nil];
}

- (void) didRegisterUserNotificationSettings:(UIUserNotificationSettings*)settings
{
    ...  
}

About

Implements didRegisterUserNotificationSettings and broadcasts the event

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 100.0%