1.0.1 • Published 9 years ago

cordova-common-registerusernotificationsettings-mm v1.0.1

Weekly downloads
2
License
Apache 2.0
Repository
github
Last release
9 years ago

Temporary Fork of Cordova RegisterUserNotificationSettings Plugin to hot-fix PGB build problem for Moodle Mobile application.

Cordova RegisterUserNotificationSettings Plugin

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
{
    ...  
}