C++

Example call

SonarCocosHelper::Notifications::methodToCall( );

Schedule local notification

static void scheduleLocalNotification( float delay, cocos2d::__String textToDisplay, cocos2d::__String notificationTitle , int notificationTag );

Schedule local notification with slide action text

static void scheduleLocalNotification( float delay, cocos2d::__String textToDisplay, cocos2d::__String notificationTitle, cocos2d::__String notificationAction , int notificationTag );

Schedule local notification with a repeat interval

static void scheduleLocalNotification( float delay, cocos2d::__String textToDisplay, cocos2d::__String notificationTitle, int repeatInterval , int notificationTag );

Schedule local notification with slide action text and a repeat interval

static void scheduleLocalNotification( float delay, cocos2d::__String textToDisplay, cocos2d::__String notificationTitle, cocos2d::__String notificationAction, int repeatInterval , int notificationTag );

Unschedule all local notifications

static void unscheduleAllLocalNotifications( );

Unschedule local notification

static void unscheduleLocalNotification( int notificationTag );

JavaScript

Example call

SonarCocosHelper.Notifications.methodToCall( );

Schedule local notification

SonarCocosHelper.Notifications.scheduleLocalNotification = function( delay, textToDisplay, notificationTitle, notificationTag, notificationAction, repeatInterval )

Unschedule all local notifications

SonarCocosHelper.Notifications.unscheduleAllLocalNotifications = function( )

Unschedule local notification

SonarCocosHelper.Notifications.unscheduleLocalNotification = function( notificationTag )