├── LICENSE ├── README.md ├── YQWaveButton ├── YQWaveButton.h └── YQWaveButton.m ├── YQWaveButtonDEMO ├── YQWaveButtonDEMO.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── ProblemChild.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── ProblemChild.xcuserdatad │ │ └── xcschemes │ │ │ ├── YQWaveButtonDEMO.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── freaky.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── YQWaveButtonDEMO │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── YQWaveButton │ │ ├── YQWaveButton.h │ │ └── YQWaveButton.m │ └── main.m ├── YQWaveButtonDEMOTests │ ├── Info.plist │ └── YQWaveButtonDEMOTests.m └── YQWaveButtonDEMOUITests │ ├── Info.plist │ └── YQWaveButtonDEMOUITests.m └── screenshot.gif /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/README.md -------------------------------------------------------------------------------- /YQWaveButton/YQWaveButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButton/YQWaveButton.h -------------------------------------------------------------------------------- /YQWaveButton/YQWaveButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButton/YQWaveButton.m -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMO.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMO.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMO.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMO.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMO.xcodeproj/project.xcworkspace/xcuserdata/ProblemChild.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMO.xcodeproj/project.xcworkspace/xcuserdata/ProblemChild.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMO.xcodeproj/xcuserdata/ProblemChild.xcuserdatad/xcschemes/YQWaveButtonDEMO.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMO.xcodeproj/xcuserdata/ProblemChild.xcuserdatad/xcschemes/YQWaveButtonDEMO.xcscheme -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMO.xcodeproj/xcuserdata/ProblemChild.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMO.xcodeproj/xcuserdata/ProblemChild.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMO.xcodeproj/xcuserdata/freaky.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMO.xcodeproj/xcuserdata/freaky.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMO/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMO/AppDelegate.h -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMO/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMO/AppDelegate.m -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMO/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMO/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMO/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMO/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMO/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMO/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMO/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMO/Info.plist -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMO/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMO/ViewController.h -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMO/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMO/ViewController.m -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMO/YQWaveButton/YQWaveButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMO/YQWaveButton/YQWaveButton.h -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMO/YQWaveButton/YQWaveButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMO/YQWaveButton/YQWaveButton.m -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMO/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMO/main.m -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMOTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMOTests/Info.plist -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMOTests/YQWaveButtonDEMOTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMOTests/YQWaveButtonDEMOTests.m -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMOUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMOUITests/Info.plist -------------------------------------------------------------------------------- /YQWaveButtonDEMO/YQWaveButtonDEMOUITests/YQWaveButtonDEMOUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/YQWaveButtonDEMO/YQWaveButtonDEMOUITests/YQWaveButtonDEMOUITests.m -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/976431yang/YQWaveButton/HEAD/screenshot.gif --------------------------------------------------------------------------------