--- id: ios-api title: iOS Specific Commands sidebar_label: iOS specific --- ## requestPermissions request permissions ```js Notifications.requestPermissions(); ``` ## checkPermissions checkPermissions ```js Notifications.checkPermissions(); ``` ## registerPushKit registerPushKit ```js Notifications.registerPushKit(); ``` ## cancelAllLocalNotifications cancelAllLocalNotifications ```js Notifications.cancelAllLocalNotifications(); ``` ## getDeliveredNotifications getDeliveredNotifications ```js Notifications.getDeliveredNotifications(); ``` ## removeAllDeliveredNotifications removeAllDeliveredNotifications ```js Notifications.removeAllDeliveredNotifications(); ``` ## removeDeliveredNotifications removeDeliveredNotifications ```js Notifications.removeDeliveredNotifications(); ``` ## getBadgeCount getBadgeCount ```js Notifications.getBadgeCount(); ``` ## setBadgeCount setBadgeCount ```js Notifications.setBadgeCount(1); ```