Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
cordova-plugin-local-notifications
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nabil Sadki
cordova-plugin-local-notifications
Commits
f6544e8b
Commit
f6544e8b
authored
Jun 30, 2017
by
Sebastián Katzer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
All interfaces working except update() for iOS
parent
0fe90469
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
36 additions
and
36 deletions
+36
-36
APPLocalNotification.h
src/ios/APPLocalNotification.h
+36
-36
APPLocalNotification.m
src/ios/APPLocalNotification.m
+0
-0
local-notification-core.js
www/local-notification-core.js
+0
-0
local-notification.js
www/local-notification.js
+0
-0
No files found.
src/ios/APPLocalNotification.h
View file @
f6544e8b
...
@@ -39,41 +39,41 @@
...
@@ -39,41 +39,41 @@
-
(
void
)
schedule
:(
CDVInvokedUrlCommand
*
)
command
;
-
(
void
)
schedule
:(
CDVInvokedUrlCommand
*
)
command
;
//// Update set of notifications
//// Update set of notifications
//- (void) update:(CDVInvokedUrlCommand*)command;
//- (void) update:(CDVInvokedUrlCommand*)command;
//
// Cancel set of notifications
//
Clear notifications by id
//- (void) cancel
:(CDVInvokedUrlCommand*)command;
-
(
void
)
clear
:(
CDVInvokedUrlCommand
*
)
command
;
//
// Cancel
all notifications
//
Clear
all notifications
//- (void) cancel
All:(CDVInvokedUrlCommand*)command;
-
(
void
)
clear
All
:(
CDVInvokedUrlCommand
*
)
command
;
//
// Clear set of notifications
//
Cancel notifications by id
//- (void) clear
:(CDVInvokedUrlCommand*)command;
-
(
void
)
cancel
:(
CDVInvokedUrlCommand
*
)
command
;
//
// Clear
all notifications
//
Cancel
all notifications
//- (void) clear
All:(CDVInvokedUrlCommand*)command;
-
(
void
)
cancel
All
:(
CDVInvokedUrlCommand
*
)
command
;
//
//
//
If a notification with an ID is present
// If a notification with an ID is present
//
- (void) isPresent:(CDVInvokedUrlCommand*)command;
-
(
void
)
isPresent
:(
CDVInvokedUrlCommand
*
)
command
;
//
//
If a notification with an ID is scheduled
// If a notification with an ID is scheduled
//
- (void) isScheduled:(CDVInvokedUrlCommand*)command;
-
(
void
)
isScheduled
:(
CDVInvokedUrlCommand
*
)
command
;
//
//
If a notification with an ID is triggered
// If a notification with an ID is triggered
//
- (void) isTriggered:(CDVInvokedUrlCommand*)command;
-
(
void
)
isTriggered
:(
CDVInvokedUrlCommand
*
)
command
;
//
//
// List all ids from all local notification
s
//
List of all notification ID
s
//- (void) getAllI
ds:(CDVInvokedUrlCommand*)command;
-
(
void
)
i
ds
:(
CDVInvokedUrlCommand
*
)
command
;
//
// List all ids from all pending notification
s
//
List of all scheduled notification ID
s
//- (void) getS
cheduledIds:(CDVInvokedUrlCommand*)command;
-
(
void
)
s
cheduledIds
:(
CDVInvokedUrlCommand
*
)
command
;
//
// List all ids from all triggered notification
s
//
List of all triggered notification ID
s
//- (void) getT
riggeredIds:(CDVInvokedUrlCommand*)command;
-
(
void
)
t
riggeredIds
:(
CDVInvokedUrlCommand
*
)
command
;
//
//
// Propertys for given local notification
//
Notification by id
//- (void) getSingle
:(CDVInvokedUrlCommand*)command;
-
(
void
)
notification
:(
CDVInvokedUrlCommand
*
)
command
;
//
// Propertya for given scheduled notification
//
Scheduled notification by id
//- (void) getSingleScheduled
:(CDVInvokedUrlCommand*)command;
-
(
void
)
scheduledNotification
:(
CDVInvokedUrlCommand
*
)
command
;
//
// Propertys for given triggered notification
//
Triggered notification by id
//- (void) getSingleTriggered
:(CDVInvokedUrlCommand*)command;
-
(
void
)
triggeredNotification
:(
CDVInvokedUrlCommand
*
)
command
;
//
//
// Property list for given local notifications
//
List of notifications by id
//- (void) getAll
:(CDVInvokedUrlCommand*)command;
-
(
void
)
notifications
:(
CDVInvokedUrlCommand
*
)
command
;
//
// Property list for given scheduled notifications
//
List of scheduled notifications by id
//- (void) getScheduled
:(CDVInvokedUrlCommand*)command;
-
(
void
)
scheduledNotifications
:(
CDVInvokedUrlCommand
*
)
command
;
//
// Property list for given triggered notifications
//
List of triggered notifications by id
//- (void) getTriggered
:(CDVInvokedUrlCommand*)command;
-
(
void
)
triggeredNotifications
:(
CDVInvokedUrlCommand
*
)
command
;
@end
@end
src/ios/APPLocalNotification.m
View file @
f6544e8b
This diff is collapsed.
Click to expand it.
www/local-notification-core.js
View file @
f6544e8b
This diff is collapsed.
Click to expand it.
www/local-notification.js
View file @
f6544e8b
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment