├── .gitignore ├── Classes └── MIBadgeButton.swift ├── LICENSE ├── MIBadgeButton-Swift.podspec ├── MIBadgeButton.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── MIBadgeButton.xccheckout │ └── xcuserdata │ │ └── mustafai.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── mustafai.xcuserdatad │ └── xcschemes │ │ ├── MIBadgeButton.xcscheme │ │ └── xcschememanagement.plist │ └── mustafaibrahim.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── MIBadgeButton.xcscheme │ └── xcschememanagement.plist ├── MIBadgeButton ├── AppDelegate.swift ├── Base.lproj │ └── Main.storyboard ├── Images.xcassets │ ├── 1.imageset │ │ ├── 1.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── LaunchImage.launchimage │ │ ├── Contents.json │ │ └── iOS Simulator Screen Shot Aug 10, 2015, 6.27.14 PM.png │ ├── OS-X-Yosemite-for-iOS.imageset │ │ ├── Contents.json │ │ └── OS-X-Yosemite-for-iOS.jpg │ ├── facebook.imageset │ │ ├── 1408848343_facebook_circle_color.png │ │ └── Contents.json │ ├── pinterest.imageset │ │ ├── 1408848335_pinterest-icon-circle-red.png │ │ └── Contents.json │ ├── swift-logo-hero-2.imageset │ │ ├── Contents.json │ │ └── swift-logo-hero-2.jpg │ ├── swift-logo-hero.imageset │ │ ├── Contents.json │ │ └── swift-logo-hero.jpg │ └── twitter.imageset │ │ ├── 1408848408_twitter_circle.png │ │ └── Contents.json ├── Info.plist └── ViewController.swift ├── MIBadgeButtonTests ├── Info.plist └── MIBadgeButtonTests.swift ├── README.md └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/MIBadgeButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/Classes/MIBadgeButton.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/LICENSE -------------------------------------------------------------------------------- /MIBadgeButton-Swift.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton-Swift.podspec -------------------------------------------------------------------------------- /MIBadgeButton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MIBadgeButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MIBadgeButton.xcodeproj/project.xcworkspace/xcshareddata/MIBadgeButton.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton.xcodeproj/project.xcworkspace/xcshareddata/MIBadgeButton.xccheckout -------------------------------------------------------------------------------- /MIBadgeButton.xcodeproj/project.xcworkspace/xcuserdata/mustafai.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton.xcodeproj/project.xcworkspace/xcuserdata/mustafai.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MIBadgeButton.xcodeproj/xcuserdata/mustafai.xcuserdatad/xcschemes/MIBadgeButton.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton.xcodeproj/xcuserdata/mustafai.xcuserdatad/xcschemes/MIBadgeButton.xcscheme -------------------------------------------------------------------------------- /MIBadgeButton.xcodeproj/xcuserdata/mustafai.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton.xcodeproj/xcuserdata/mustafai.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MIBadgeButton.xcodeproj/xcuserdata/mustafaibrahim.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton.xcodeproj/xcuserdata/mustafaibrahim.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /MIBadgeButton.xcodeproj/xcuserdata/mustafaibrahim.xcuserdatad/xcschemes/MIBadgeButton.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton.xcodeproj/xcuserdata/mustafaibrahim.xcuserdatad/xcschemes/MIBadgeButton.xcscheme -------------------------------------------------------------------------------- /MIBadgeButton.xcodeproj/xcuserdata/mustafaibrahim.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton.xcodeproj/xcuserdata/mustafaibrahim.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MIBadgeButton/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/AppDelegate.swift -------------------------------------------------------------------------------- /MIBadgeButton/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MIBadgeButton/Images.xcassets/1.imageset/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Images.xcassets/1.imageset/1.png -------------------------------------------------------------------------------- /MIBadgeButton/Images.xcassets/1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Images.xcassets/1.imageset/Contents.json -------------------------------------------------------------------------------- /MIBadgeButton/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MIBadgeButton/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /MIBadgeButton/Images.xcassets/LaunchImage.launchimage/iOS Simulator Screen Shot Aug 10, 2015, 6.27.14 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Images.xcassets/LaunchImage.launchimage/iOS Simulator Screen Shot Aug 10, 2015, 6.27.14 PM.png -------------------------------------------------------------------------------- /MIBadgeButton/Images.xcassets/OS-X-Yosemite-for-iOS.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Images.xcassets/OS-X-Yosemite-for-iOS.imageset/Contents.json -------------------------------------------------------------------------------- /MIBadgeButton/Images.xcassets/OS-X-Yosemite-for-iOS.imageset/OS-X-Yosemite-for-iOS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Images.xcassets/OS-X-Yosemite-for-iOS.imageset/OS-X-Yosemite-for-iOS.jpg -------------------------------------------------------------------------------- /MIBadgeButton/Images.xcassets/facebook.imageset/1408848343_facebook_circle_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Images.xcassets/facebook.imageset/1408848343_facebook_circle_color.png -------------------------------------------------------------------------------- /MIBadgeButton/Images.xcassets/facebook.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Images.xcassets/facebook.imageset/Contents.json -------------------------------------------------------------------------------- /MIBadgeButton/Images.xcassets/pinterest.imageset/1408848335_pinterest-icon-circle-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Images.xcassets/pinterest.imageset/1408848335_pinterest-icon-circle-red.png -------------------------------------------------------------------------------- /MIBadgeButton/Images.xcassets/pinterest.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Images.xcassets/pinterest.imageset/Contents.json -------------------------------------------------------------------------------- /MIBadgeButton/Images.xcassets/swift-logo-hero-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Images.xcassets/swift-logo-hero-2.imageset/Contents.json -------------------------------------------------------------------------------- /MIBadgeButton/Images.xcassets/swift-logo-hero-2.imageset/swift-logo-hero-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Images.xcassets/swift-logo-hero-2.imageset/swift-logo-hero-2.jpg -------------------------------------------------------------------------------- /MIBadgeButton/Images.xcassets/swift-logo-hero.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Images.xcassets/swift-logo-hero.imageset/Contents.json -------------------------------------------------------------------------------- /MIBadgeButton/Images.xcassets/swift-logo-hero.imageset/swift-logo-hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Images.xcassets/swift-logo-hero.imageset/swift-logo-hero.jpg -------------------------------------------------------------------------------- /MIBadgeButton/Images.xcassets/twitter.imageset/1408848408_twitter_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Images.xcassets/twitter.imageset/1408848408_twitter_circle.png -------------------------------------------------------------------------------- /MIBadgeButton/Images.xcassets/twitter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Images.xcassets/twitter.imageset/Contents.json -------------------------------------------------------------------------------- /MIBadgeButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/Info.plist -------------------------------------------------------------------------------- /MIBadgeButton/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButton/ViewController.swift -------------------------------------------------------------------------------- /MIBadgeButtonTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButtonTests/Info.plist -------------------------------------------------------------------------------- /MIBadgeButtonTests/MIBadgeButtonTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/MIBadgeButtonTests/MIBadgeButtonTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafaibrahim989/MIBadgeButton-Swift/HEAD/screenshot.png --------------------------------------------------------------------------------