├── .gitignore ├── EasyNotificationBadge.podspec ├── Example ├── EasyNotificationBadgeExample.xcworkspace │ └── contents.xcworkspacedata ├── NotificationBadgeExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── NotificationBadgeExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── LICENSE ├── Package.swift ├── README.md ├── Screenshots ├── .DS_Store ├── heading.gif ├── ss1.png ├── ss2.png ├── ss3.png ├── ss4.png ├── ss5.png └── ss6.PNG └── Sources └── EasyNotificationBadge └── EasyNotificationBadge.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/.gitignore -------------------------------------------------------------------------------- /EasyNotificationBadge.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/EasyNotificationBadge.podspec -------------------------------------------------------------------------------- /Example/EasyNotificationBadgeExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Example/EasyNotificationBadgeExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/NotificationBadgeExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Example/NotificationBadgeExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/NotificationBadgeExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Example/NotificationBadgeExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/NotificationBadgeExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Example/NotificationBadgeExample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/NotificationBadgeExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Example/NotificationBadgeExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/NotificationBadgeExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Example/NotificationBadgeExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/NotificationBadgeExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Example/NotificationBadgeExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/NotificationBadgeExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Example/NotificationBadgeExample/Info.plist -------------------------------------------------------------------------------- /Example/NotificationBadgeExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Example/NotificationBadgeExample/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Screenshots/.DS_Store -------------------------------------------------------------------------------- /Screenshots/heading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Screenshots/heading.gif -------------------------------------------------------------------------------- /Screenshots/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Screenshots/ss1.png -------------------------------------------------------------------------------- /Screenshots/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Screenshots/ss2.png -------------------------------------------------------------------------------- /Screenshots/ss3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Screenshots/ss3.png -------------------------------------------------------------------------------- /Screenshots/ss4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Screenshots/ss4.png -------------------------------------------------------------------------------- /Screenshots/ss5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Screenshots/ss5.png -------------------------------------------------------------------------------- /Screenshots/ss6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Screenshots/ss6.PNG -------------------------------------------------------------------------------- /Sources/EasyNotificationBadge/EasyNotificationBadge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minitour/EasyNotificationBadge/HEAD/Sources/EasyNotificationBadge/EasyNotificationBadge.swift --------------------------------------------------------------------------------