├── .gitignore ├── LICENSE.md ├── LocalNotificationHelper.podspec ├── LocalNotificationHelper.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── LocalNotificationHelper ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── icon_dislike.imageset │ │ ├── Contents.json │ │ └── icon_dislike.png │ └── icon_like.imageset │ │ ├── Contents.json │ │ └── icon_like.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift ├── LocalNotificationHelperTests ├── Info.plist └── LocalNotificationHelperTests.swift ├── LocalNotificationHelperUITests ├── Info.plist └── LocalNotificationHelperUITests.swift ├── README.md └── Source └── LocalNotificationHelper.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LocalNotificationHelper.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LocalNotificationHelper.podspec -------------------------------------------------------------------------------- /LocalNotificationHelper.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LocalNotificationHelper.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LocalNotificationHelper.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LocalNotificationHelper.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LocalNotificationHelper/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LocalNotificationHelper/AppDelegate.swift -------------------------------------------------------------------------------- /LocalNotificationHelper/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LocalNotificationHelper/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LocalNotificationHelper/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LocalNotificationHelper/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LocalNotificationHelper/Assets.xcassets/icon_dislike.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LocalNotificationHelper/Assets.xcassets/icon_dislike.imageset/Contents.json -------------------------------------------------------------------------------- /LocalNotificationHelper/Assets.xcassets/icon_dislike.imageset/icon_dislike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LocalNotificationHelper/Assets.xcassets/icon_dislike.imageset/icon_dislike.png -------------------------------------------------------------------------------- /LocalNotificationHelper/Assets.xcassets/icon_like.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LocalNotificationHelper/Assets.xcassets/icon_like.imageset/Contents.json -------------------------------------------------------------------------------- /LocalNotificationHelper/Assets.xcassets/icon_like.imageset/icon_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LocalNotificationHelper/Assets.xcassets/icon_like.imageset/icon_like.png -------------------------------------------------------------------------------- /LocalNotificationHelper/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LocalNotificationHelper/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LocalNotificationHelper/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LocalNotificationHelper/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LocalNotificationHelper/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LocalNotificationHelper/Info.plist -------------------------------------------------------------------------------- /LocalNotificationHelper/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LocalNotificationHelper/ViewController.swift -------------------------------------------------------------------------------- /LocalNotificationHelperTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LocalNotificationHelperTests/Info.plist -------------------------------------------------------------------------------- /LocalNotificationHelperTests/LocalNotificationHelperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LocalNotificationHelperTests/LocalNotificationHelperTests.swift -------------------------------------------------------------------------------- /LocalNotificationHelperUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LocalNotificationHelperUITests/Info.plist -------------------------------------------------------------------------------- /LocalNotificationHelperUITests/LocalNotificationHelperUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/LocalNotificationHelperUITests/LocalNotificationHelperUITests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/README.md -------------------------------------------------------------------------------- /Source/LocalNotificationHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmettKeskin/LocalNotificationHelper/HEAD/Source/LocalNotificationHelper.swift --------------------------------------------------------------------------------