├── .gitignore ├── Example ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Example-Bridging-Header.h ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── TableCell.swift ├── TableViewController.swift └── ViewController.swift ├── LICENSE ├── MRLocalNotificationFacade.podspec ├── MRLocalNotificationFacade.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── MRLocalNotificationFacade ├── MRLocalNotificationFacade.h └── MRLocalNotificationFacade.m ├── README.md ├── Tests └── Info.plist └── notification.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectr/MRLocalNotificationFacade/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectr/MRLocalNotificationFacade/HEAD/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectr/MRLocalNotificationFacade/HEAD/Example/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectr/MRLocalNotificationFacade/HEAD/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | 2 | #import "MRLocalNotificationFacade.h" 3 | -------------------------------------------------------------------------------- /Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectr/MRLocalNotificationFacade/HEAD/Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectr/MRLocalNotificationFacade/HEAD/Example/Info.plist -------------------------------------------------------------------------------- /Example/TableCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectr/MRLocalNotificationFacade/HEAD/Example/TableCell.swift -------------------------------------------------------------------------------- /Example/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectr/MRLocalNotificationFacade/HEAD/Example/TableViewController.swift -------------------------------------------------------------------------------- /Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectr/MRLocalNotificationFacade/HEAD/Example/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectr/MRLocalNotificationFacade/HEAD/LICENSE -------------------------------------------------------------------------------- /MRLocalNotificationFacade.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectr/MRLocalNotificationFacade/HEAD/MRLocalNotificationFacade.podspec -------------------------------------------------------------------------------- /MRLocalNotificationFacade.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectr/MRLocalNotificationFacade/HEAD/MRLocalNotificationFacade.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MRLocalNotificationFacade.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectr/MRLocalNotificationFacade/HEAD/MRLocalNotificationFacade.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MRLocalNotificationFacade/MRLocalNotificationFacade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectr/MRLocalNotificationFacade/HEAD/MRLocalNotificationFacade/MRLocalNotificationFacade.h -------------------------------------------------------------------------------- /MRLocalNotificationFacade/MRLocalNotificationFacade.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectr/MRLocalNotificationFacade/HEAD/MRLocalNotificationFacade/MRLocalNotificationFacade.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectr/MRLocalNotificationFacade/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectr/MRLocalNotificationFacade/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /notification.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hectr/MRLocalNotificationFacade/HEAD/notification.jpg --------------------------------------------------------------------------------