├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── SwiftLocalNotification.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-SwiftLocalNotification_Example │ │ ├── Pods-SwiftLocalNotification_Example-Info.plist │ │ ├── Pods-SwiftLocalNotification_Example-acknowledgements.markdown │ │ ├── Pods-SwiftLocalNotification_Example-acknowledgements.plist │ │ ├── Pods-SwiftLocalNotification_Example-dummy.m │ │ ├── Pods-SwiftLocalNotification_Example-frameworks.sh │ │ ├── Pods-SwiftLocalNotification_Example-umbrella.h │ │ ├── Pods-SwiftLocalNotification_Example.debug.xcconfig │ │ ├── Pods-SwiftLocalNotification_Example.modulemap │ │ └── Pods-SwiftLocalNotification_Example.release.xcconfig │ │ ├── Pods-SwiftLocalNotification_Tests │ │ ├── Pods-SwiftLocalNotification_Tests-Info.plist │ │ ├── Pods-SwiftLocalNotification_Tests-acknowledgements.markdown │ │ ├── Pods-SwiftLocalNotification_Tests-acknowledgements.plist │ │ ├── Pods-SwiftLocalNotification_Tests-dummy.m │ │ ├── Pods-SwiftLocalNotification_Tests-umbrella.h │ │ ├── Pods-SwiftLocalNotification_Tests.debug.xcconfig │ │ ├── Pods-SwiftLocalNotification_Tests.modulemap │ │ └── Pods-SwiftLocalNotification_Tests.release.xcconfig │ │ └── SwiftLocalNotification │ │ ├── SwiftLocalNotification-Info.plist │ │ ├── SwiftLocalNotification-dummy.m │ │ ├── SwiftLocalNotification-prefix.pch │ │ ├── SwiftLocalNotification-umbrella.h │ │ ├── SwiftLocalNotification.debug.xcconfig │ │ ├── SwiftLocalNotification.modulemap │ │ └── SwiftLocalNotification.release.xcconfig ├── SwiftLocalNotification.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── SwiftLocalNotification-Example.xcscheme ├── SwiftLocalNotification.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── SwiftLocalNotification │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ └── ItunesArtwork@2x.png │ │ ├── Contents.json │ │ └── logo.imageset │ │ │ ├── Contents.json │ │ │ └── ItunesArtwork@2x.png │ ├── Info.plist │ └── MainViewController.swift └── Tests │ ├── Info.plist │ └── SwiftLocalNotificationTests.swift ├── LICENSE ├── README.md ├── Screenshot.jpeg ├── SwiftLocalNotification.podspec ├── SwiftLocalNotification ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── BadgeOption.swift │ ├── Constants.swift │ ├── DateExtensions.swift │ ├── PermissionStatus.swift │ ├── RepeatingInterval.swift │ ├── SwiftLocalNotification.swift │ ├── SwiftLocalNotificationCategory.swift │ ├── SwiftLocalNotificationDelegate.swift │ ├── SwiftLocalNotificationInterface.swift │ ├── SwiftLocalNotificationModel.swift │ ├── SwiftLocalNotificationPermission.swift │ ├── SwiftLocalNotificationQueue.swift │ ├── UNNotificationExtension.swift │ ├── UNNotificationRequestExtensions.swift │ └── UserDefaultWrapper.swift ├── SwiftLocalNotificationHeader.png └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/SwiftLocalNotification.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Local Podspecs/SwiftLocalNotification.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Example/Pods-SwiftLocalNotification_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Example/Pods-SwiftLocalNotification_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Example/Pods-SwiftLocalNotification_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Example/Pods-SwiftLocalNotification_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Example/Pods-SwiftLocalNotification_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Example/Pods-SwiftLocalNotification_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Example/Pods-SwiftLocalNotification_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Example/Pods-SwiftLocalNotification_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Example/Pods-SwiftLocalNotification_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Example/Pods-SwiftLocalNotification_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Example/Pods-SwiftLocalNotification_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Example/Pods-SwiftLocalNotification_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Example/Pods-SwiftLocalNotification_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Example/Pods-SwiftLocalNotification_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Example/Pods-SwiftLocalNotification_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Example/Pods-SwiftLocalNotification_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Example/Pods-SwiftLocalNotification_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Example/Pods-SwiftLocalNotification_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Tests/Pods-SwiftLocalNotification_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Tests/Pods-SwiftLocalNotification_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Tests/Pods-SwiftLocalNotification_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Tests/Pods-SwiftLocalNotification_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Tests/Pods-SwiftLocalNotification_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Tests/Pods-SwiftLocalNotification_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Tests/Pods-SwiftLocalNotification_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Tests/Pods-SwiftLocalNotification_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Tests/Pods-SwiftLocalNotification_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Tests/Pods-SwiftLocalNotification_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Tests/Pods-SwiftLocalNotification_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Tests/Pods-SwiftLocalNotification_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Tests/Pods-SwiftLocalNotification_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Tests/Pods-SwiftLocalNotification_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Tests/Pods-SwiftLocalNotification_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/Pods-SwiftLocalNotification_Tests/Pods-SwiftLocalNotification_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftLocalNotification/SwiftLocalNotification-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/SwiftLocalNotification/SwiftLocalNotification-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftLocalNotification/SwiftLocalNotification-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/SwiftLocalNotification/SwiftLocalNotification-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftLocalNotification/SwiftLocalNotification-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/SwiftLocalNotification/SwiftLocalNotification-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftLocalNotification/SwiftLocalNotification-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/SwiftLocalNotification/SwiftLocalNotification-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftLocalNotification/SwiftLocalNotification.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/SwiftLocalNotification/SwiftLocalNotification.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftLocalNotification/SwiftLocalNotification.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/SwiftLocalNotification/SwiftLocalNotification.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftLocalNotification/SwiftLocalNotification.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Pods/Target Support Files/SwiftLocalNotification/SwiftLocalNotification.release.xcconfig -------------------------------------------------------------------------------- /Example/SwiftLocalNotification.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SwiftLocalNotification.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SwiftLocalNotification.xcodeproj/xcshareddata/xcschemes/SwiftLocalNotification-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification.xcodeproj/xcshareddata/xcschemes/SwiftLocalNotification-Example.xcscheme -------------------------------------------------------------------------------- /Example/SwiftLocalNotification.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SwiftLocalNotification.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/SwiftLocalNotification/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification/AppDelegate.swift -------------------------------------------------------------------------------- /Example/SwiftLocalNotification/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/SwiftLocalNotification/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification/Images.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /Example/SwiftLocalNotification/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/SwiftLocalNotification/Images.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification/Images.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SwiftLocalNotification/Images.xcassets/logo.imageset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification/Images.xcassets/logo.imageset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /Example/SwiftLocalNotification/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification/Info.plist -------------------------------------------------------------------------------- /Example/SwiftLocalNotification/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/SwiftLocalNotification/MainViewController.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/SwiftLocalNotificationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Example/Tests/SwiftLocalNotificationTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/Screenshot.jpeg -------------------------------------------------------------------------------- /SwiftLocalNotification.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/SwiftLocalNotification.podspec -------------------------------------------------------------------------------- /SwiftLocalNotification/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SwiftLocalNotification/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SwiftLocalNotification/Classes/BadgeOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/SwiftLocalNotification/Classes/BadgeOption.swift -------------------------------------------------------------------------------- /SwiftLocalNotification/Classes/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/SwiftLocalNotification/Classes/Constants.swift -------------------------------------------------------------------------------- /SwiftLocalNotification/Classes/DateExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/SwiftLocalNotification/Classes/DateExtensions.swift -------------------------------------------------------------------------------- /SwiftLocalNotification/Classes/PermissionStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/SwiftLocalNotification/Classes/PermissionStatus.swift -------------------------------------------------------------------------------- /SwiftLocalNotification/Classes/RepeatingInterval.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/SwiftLocalNotification/Classes/RepeatingInterval.swift -------------------------------------------------------------------------------- /SwiftLocalNotification/Classes/SwiftLocalNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/SwiftLocalNotification/Classes/SwiftLocalNotification.swift -------------------------------------------------------------------------------- /SwiftLocalNotification/Classes/SwiftLocalNotificationCategory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/SwiftLocalNotification/Classes/SwiftLocalNotificationCategory.swift -------------------------------------------------------------------------------- /SwiftLocalNotification/Classes/SwiftLocalNotificationDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/SwiftLocalNotification/Classes/SwiftLocalNotificationDelegate.swift -------------------------------------------------------------------------------- /SwiftLocalNotification/Classes/SwiftLocalNotificationInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/SwiftLocalNotification/Classes/SwiftLocalNotificationInterface.swift -------------------------------------------------------------------------------- /SwiftLocalNotification/Classes/SwiftLocalNotificationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/SwiftLocalNotification/Classes/SwiftLocalNotificationModel.swift -------------------------------------------------------------------------------- /SwiftLocalNotification/Classes/SwiftLocalNotificationPermission.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/SwiftLocalNotification/Classes/SwiftLocalNotificationPermission.swift -------------------------------------------------------------------------------- /SwiftLocalNotification/Classes/SwiftLocalNotificationQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/SwiftLocalNotification/Classes/SwiftLocalNotificationQueue.swift -------------------------------------------------------------------------------- /SwiftLocalNotification/Classes/UNNotificationExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/SwiftLocalNotification/Classes/UNNotificationExtension.swift -------------------------------------------------------------------------------- /SwiftLocalNotification/Classes/UNNotificationRequestExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/SwiftLocalNotification/Classes/UNNotificationRequestExtensions.swift -------------------------------------------------------------------------------- /SwiftLocalNotification/Classes/UserDefaultWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/SwiftLocalNotification/Classes/UserDefaultWrapper.swift -------------------------------------------------------------------------------- /SwiftLocalNotificationHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Salarsoleimani/SwiftLocalNotification/HEAD/SwiftLocalNotificationHeader.png -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------