├── .gitignore ├── ASOAnimatedButton.podspec ├── CHANGELOG.md ├── Classes ├── ios │ ├── .gitkeep │ ├── BounceButton │ │ ├── ASOBounceButtonView.h │ │ ├── ASOBounceButtonView.m │ │ └── ASOBounceButtonViewDelegate.h │ └── TwoStateButton │ │ ├── ASOTwoStateButton.h │ │ └── ASOTwoStateButton.m └── osx │ └── .gitkeep ├── Example ├── BounceButtonExample │ ├── BounceButtonExample.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── BounceButtonExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ ├── Main_iPad.storyboard │ │ │ └── Main_iPhone.storyboard │ │ ├── BounceButtonExample-Info.plist │ │ ├── BounceButtonExample-Prefix.pch │ │ ├── BounceButtonView.h │ │ ├── BounceButtonView.m │ │ ├── ExpandStyleMenuViewController.h │ │ ├── ExpandStyleMenuViewController.m │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── LaunchImage.launchimage │ │ │ │ └── Contents.json │ │ │ ├── MenuItem1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Facebook_round.png │ │ │ │ └── Facebook_round@2x-1.png │ │ │ ├── MenuItem2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Twitter_round.png │ │ │ │ └── Twitter_round@2x.png │ │ │ ├── MenuItem3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Googleplus_round.png │ │ │ │ └── Googleplus_round@2x.png │ │ │ ├── MenuItem4.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Pinterest_round.png │ │ │ │ └── Pinterest_round@2x.png │ │ │ ├── OffStateButtonImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── post_type_bubble_link.png │ │ │ │ └── post_type_bubble_link@2x.png │ │ │ ├── OnStateButtonImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── post_type_bubble_chat.png │ │ │ │ └── post_type_bubble_chat@2x.png │ │ │ ├── first.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── first.png │ │ │ │ └── first@2x.png │ │ │ └── second.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── second.png │ │ │ │ └── second@2x.png │ │ ├── RiseStyleMenuViewController.h │ │ ├── RiseStyleMenuViewController.m │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── BounceButtonExampleTests │ │ ├── BounceButtonExampleTests-Info.plist │ │ ├── BounceButtonExampleTests.m │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ └── README.md ├── Example.xcworkspace │ └── contents.xcworkspacedata ├── Podfile ├── Podfile.lock ├── Pods │ ├── BuildHeaders │ │ └── ASOAnimatedButton │ │ │ ├── ASOBounceButtonView.h │ │ │ ├── ASOBounceButtonViewDelegate.h │ │ │ └── ASOTwoStateButton.h │ ├── Headers │ │ └── ASOAnimatedButton │ │ │ ├── ASOBounceButtonView.h │ │ │ ├── ASOBounceButtonViewDelegate.h │ │ │ └── ASOTwoStateButton.h │ ├── Local Podspecs │ │ └── ASOAnimatedButton.podspec │ ├── Manifest.lock │ ├── Pods-ASOAnimatedButton-Private.xcconfig │ ├── Pods-ASOAnimatedButton-dummy.m │ ├── Pods-ASOAnimatedButton-prefix.pch │ ├── Pods-ASOAnimatedButton.xcconfig │ ├── Pods-TwoStateButtonExample-ASOAnimatedButton-Private.xcconfig │ ├── Pods-TwoStateButtonExample-ASOAnimatedButton-dummy.m │ ├── Pods-TwoStateButtonExample-ASOAnimatedButton-prefix.pch │ ├── Pods-TwoStateButtonExample-ASOAnimatedButton.xcconfig │ ├── Pods-TwoStateButtonExample-acknowledgements.markdown │ ├── Pods-TwoStateButtonExample-acknowledgements.plist │ ├── Pods-TwoStateButtonExample-dummy.m │ ├── Pods-TwoStateButtonExample-environment.h │ ├── Pods-TwoStateButtonExample-resources.sh │ ├── Pods-TwoStateButtonExample.xcconfig │ ├── Pods-acknowledgements.markdown │ ├── Pods-acknowledgements.plist │ ├── Pods-dummy.m │ ├── Pods-environment.h │ ├── Pods-resources.sh │ ├── Pods.xcconfig │ └── Pods.xcodeproj │ │ └── project.pbxproj └── TwoStateButtonExample │ ├── README.md │ ├── TwoStateButtonExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── TwoStateButtonExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── Main_iPad.storyboard │ │ └── Main_iPhone.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── StateOneButtonImage.imageset │ │ │ ├── Contents.json │ │ │ ├── post_type_bubble_chat.png │ │ │ └── post_type_bubble_chat@2x.png │ │ └── StateTwoButtonImage.imageset │ │ │ ├── Contents.json │ │ │ ├── post_type_bubble_link.png │ │ │ └── post_type_bubble_link@2x.png │ ├── TwoStateButtonExample-Info.plist │ ├── TwoStateButtonExample-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m │ └── TwoStateButtonExampleTests │ ├── TwoStateButtonExampleTests-Info.plist │ ├── TwoStateButtonExampleTests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── README.md └── Rakefile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/.gitignore -------------------------------------------------------------------------------- /ASOAnimatedButton.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/ASOAnimatedButton.podspec -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # ASOAnimatedButton CHANGELOG 2 | 3 | ## 0.1.0 4 | 5 | Initial release. 6 | -------------------------------------------------------------------------------- /Classes/ios/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classes/ios/BounceButton/ASOBounceButtonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Classes/ios/BounceButton/ASOBounceButtonView.h -------------------------------------------------------------------------------- /Classes/ios/BounceButton/ASOBounceButtonView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Classes/ios/BounceButton/ASOBounceButtonView.m -------------------------------------------------------------------------------- /Classes/ios/BounceButton/ASOBounceButtonViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Classes/ios/BounceButton/ASOBounceButtonViewDelegate.h -------------------------------------------------------------------------------- /Classes/ios/TwoStateButton/ASOTwoStateButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Classes/ios/TwoStateButton/ASOTwoStateButton.h -------------------------------------------------------------------------------- /Classes/ios/TwoStateButton/ASOTwoStateButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Classes/ios/TwoStateButton/ASOTwoStateButton.m -------------------------------------------------------------------------------- /Classes/osx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/AppDelegate.h -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/AppDelegate.m -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/BounceButtonExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/BounceButtonExample-Info.plist -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/BounceButtonExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/BounceButtonExample-Prefix.pch -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/BounceButtonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/BounceButtonView.h -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/BounceButtonView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/BounceButtonView.m -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/ExpandStyleMenuViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/ExpandStyleMenuViewController.h -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/ExpandStyleMenuViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/ExpandStyleMenuViewController.m -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem1.imageset/Facebook_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem1.imageset/Facebook_round.png -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem1.imageset/Facebook_round@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem1.imageset/Facebook_round@2x-1.png -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem2.imageset/Twitter_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem2.imageset/Twitter_round.png -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem2.imageset/Twitter_round@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem2.imageset/Twitter_round@2x.png -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem3.imageset/Contents.json -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem3.imageset/Googleplus_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem3.imageset/Googleplus_round.png -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem3.imageset/Googleplus_round@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem3.imageset/Googleplus_round@2x.png -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem4.imageset/Contents.json -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem4.imageset/Pinterest_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem4.imageset/Pinterest_round.png -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem4.imageset/Pinterest_round@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/MenuItem4.imageset/Pinterest_round@2x.png -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/OffStateButtonImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/OffStateButtonImage.imageset/Contents.json -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/OffStateButtonImage.imageset/post_type_bubble_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/OffStateButtonImage.imageset/post_type_bubble_link.png -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/OffStateButtonImage.imageset/post_type_bubble_link@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/OffStateButtonImage.imageset/post_type_bubble_link@2x.png -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/OnStateButtonImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/OnStateButtonImage.imageset/Contents.json -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/OnStateButtonImage.imageset/post_type_bubble_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/OnStateButtonImage.imageset/post_type_bubble_chat.png -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/OnStateButtonImage.imageset/post_type_bubble_chat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/OnStateButtonImage.imageset/post_type_bubble_chat@2x.png -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/first.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/first.imageset/Contents.json -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/first.imageset/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/first.imageset/first.png -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/first.imageset/first@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/first.imageset/first@2x.png -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/second.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/second.imageset/Contents.json -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/second.imageset/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/second.imageset/second.png -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/Images.xcassets/second.imageset/second@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/Images.xcassets/second.imageset/second@2x.png -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/RiseStyleMenuViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/RiseStyleMenuViewController.h -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/RiseStyleMenuViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/RiseStyleMenuViewController.m -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExample/main.m -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExampleTests/BounceButtonExampleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExampleTests/BounceButtonExampleTests-Info.plist -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExampleTests/BounceButtonExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/BounceButtonExampleTests/BounceButtonExampleTests.m -------------------------------------------------------------------------------- /Example/BounceButtonExample/BounceButtonExampleTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/BounceButtonExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/BounceButtonExample/README.md -------------------------------------------------------------------------------- /Example/Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/BuildHeaders/ASOAnimatedButton/ASOBounceButtonView.h: -------------------------------------------------------------------------------- 1 | ../../../../Classes/ios/BounceButton/ASOBounceButtonView.h -------------------------------------------------------------------------------- /Example/Pods/BuildHeaders/ASOAnimatedButton/ASOBounceButtonViewDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../Classes/ios/BounceButton/ASOBounceButtonViewDelegate.h -------------------------------------------------------------------------------- /Example/Pods/BuildHeaders/ASOAnimatedButton/ASOTwoStateButton.h: -------------------------------------------------------------------------------- 1 | ../../../../Classes/ios/TwoStateButton/ASOTwoStateButton.h -------------------------------------------------------------------------------- /Example/Pods/Headers/ASOAnimatedButton/ASOBounceButtonView.h: -------------------------------------------------------------------------------- 1 | ../../../../Classes/ios/BounceButton/ASOBounceButtonView.h -------------------------------------------------------------------------------- /Example/Pods/Headers/ASOAnimatedButton/ASOBounceButtonViewDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../../Classes/ios/BounceButton/ASOBounceButtonViewDelegate.h -------------------------------------------------------------------------------- /Example/Pods/Headers/ASOAnimatedButton/ASOTwoStateButton.h: -------------------------------------------------------------------------------- 1 | ../../../../Classes/ios/TwoStateButton/ASOTwoStateButton.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/ASOAnimatedButton.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Local Podspecs/ASOAnimatedButton.podspec -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods-ASOAnimatedButton-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods-ASOAnimatedButton-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Pods-ASOAnimatedButton-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods-ASOAnimatedButton-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Pods-ASOAnimatedButton-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods-ASOAnimatedButton-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Pods-ASOAnimatedButton.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Pods-TwoStateButtonExample-ASOAnimatedButton-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods-TwoStateButtonExample-ASOAnimatedButton-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Pods-TwoStateButtonExample-ASOAnimatedButton-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods-TwoStateButtonExample-ASOAnimatedButton-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Pods-TwoStateButtonExample-ASOAnimatedButton-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods-TwoStateButtonExample-ASOAnimatedButton-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Pods-TwoStateButtonExample-ASOAnimatedButton.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Pods-TwoStateButtonExample-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods-TwoStateButtonExample-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Pods-TwoStateButtonExample-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods-TwoStateButtonExample-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Pods-TwoStateButtonExample-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods-TwoStateButtonExample-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Pods-TwoStateButtonExample-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods-TwoStateButtonExample-environment.h -------------------------------------------------------------------------------- /Example/Pods/Pods-TwoStateButtonExample-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods-TwoStateButtonExample-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Pods-TwoStateButtonExample.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods-TwoStateButtonExample.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Pods-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods-environment.h -------------------------------------------------------------------------------- /Example/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Pods.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/README.md -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample/AppDelegate.h -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample/AppDelegate.m -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample/Images.xcassets/StateOneButtonImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample/Images.xcassets/StateOneButtonImage.imageset/Contents.json -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample/Images.xcassets/StateOneButtonImage.imageset/post_type_bubble_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample/Images.xcassets/StateOneButtonImage.imageset/post_type_bubble_chat.png -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample/Images.xcassets/StateOneButtonImage.imageset/post_type_bubble_chat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample/Images.xcassets/StateOneButtonImage.imageset/post_type_bubble_chat@2x.png -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample/Images.xcassets/StateTwoButtonImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample/Images.xcassets/StateTwoButtonImage.imageset/Contents.json -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample/Images.xcassets/StateTwoButtonImage.imageset/post_type_bubble_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample/Images.xcassets/StateTwoButtonImage.imageset/post_type_bubble_link.png -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample/Images.xcassets/StateTwoButtonImage.imageset/post_type_bubble_link@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample/Images.xcassets/StateTwoButtonImage.imageset/post_type_bubble_link@2x.png -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample/TwoStateButtonExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample/TwoStateButtonExample-Info.plist -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample/TwoStateButtonExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample/TwoStateButtonExample-Prefix.pch -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample/ViewController.h -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample/ViewController.m -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExample/main.m -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExampleTests/TwoStateButtonExampleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExampleTests/TwoStateButtonExampleTests-Info.plist -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExampleTests/TwoStateButtonExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Example/TwoStateButtonExample/TwoStateButtonExampleTests/TwoStateButtonExampleTests.m -------------------------------------------------------------------------------- /Example/TwoStateButtonExample/TwoStateButtonExampleTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agusso/ASOAnimatedButton/HEAD/Rakefile --------------------------------------------------------------------------------