├── .gitignore ├── LICENSE ├── MJBadgeButton ├── MJBadgeButton.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── MJBadgeButton │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Cart.imageset │ │ ├── Contents.json │ │ ├── ic_shopping_cart_2x.png │ │ └── ic_shopping_cart_3x.png │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── MJBadgeBarButton.swift │ └── ViewController.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaleelNazir/MJBadgeButtonSwift/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaleelNazir/MJBadgeButtonSwift/HEAD/LICENSE -------------------------------------------------------------------------------- /MJBadgeButton/MJBadgeButton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaleelNazir/MJBadgeButtonSwift/HEAD/MJBadgeButton/MJBadgeButton.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MJBadgeButton/MJBadgeButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaleelNazir/MJBadgeButtonSwift/HEAD/MJBadgeButton/MJBadgeButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MJBadgeButton/MJBadgeButton/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaleelNazir/MJBadgeButtonSwift/HEAD/MJBadgeButton/MJBadgeButton/AppDelegate.swift -------------------------------------------------------------------------------- /MJBadgeButton/MJBadgeButton/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaleelNazir/MJBadgeButtonSwift/HEAD/MJBadgeButton/MJBadgeButton/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MJBadgeButton/MJBadgeButton/Assets.xcassets/Cart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaleelNazir/MJBadgeButtonSwift/HEAD/MJBadgeButton/MJBadgeButton/Assets.xcassets/Cart.imageset/Contents.json -------------------------------------------------------------------------------- /MJBadgeButton/MJBadgeButton/Assets.xcassets/Cart.imageset/ic_shopping_cart_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaleelNazir/MJBadgeButtonSwift/HEAD/MJBadgeButton/MJBadgeButton/Assets.xcassets/Cart.imageset/ic_shopping_cart_2x.png -------------------------------------------------------------------------------- /MJBadgeButton/MJBadgeButton/Assets.xcassets/Cart.imageset/ic_shopping_cart_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaleelNazir/MJBadgeButtonSwift/HEAD/MJBadgeButton/MJBadgeButton/Assets.xcassets/Cart.imageset/ic_shopping_cart_3x.png -------------------------------------------------------------------------------- /MJBadgeButton/MJBadgeButton/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaleelNazir/MJBadgeButtonSwift/HEAD/MJBadgeButton/MJBadgeButton/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MJBadgeButton/MJBadgeButton/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaleelNazir/MJBadgeButtonSwift/HEAD/MJBadgeButton/MJBadgeButton/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MJBadgeButton/MJBadgeButton/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaleelNazir/MJBadgeButtonSwift/HEAD/MJBadgeButton/MJBadgeButton/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MJBadgeButton/MJBadgeButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaleelNazir/MJBadgeButtonSwift/HEAD/MJBadgeButton/MJBadgeButton/Info.plist -------------------------------------------------------------------------------- /MJBadgeButton/MJBadgeButton/MJBadgeBarButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaleelNazir/MJBadgeButtonSwift/HEAD/MJBadgeButton/MJBadgeButton/MJBadgeBarButton.swift -------------------------------------------------------------------------------- /MJBadgeButton/MJBadgeButton/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaleelNazir/MJBadgeButtonSwift/HEAD/MJBadgeButton/MJBadgeButton/ViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaleelNazir/MJBadgeButtonSwift/HEAD/README.md --------------------------------------------------------------------------------