├── JxbScaleButton.podspec ├── JxbScaleButton.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── JxbScaleButton.xccheckout │ └── xcuserdata │ │ └── Peter.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── Peter.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── JxbScaleButton.xcscheme │ └── xcschememanagement.plist ├── JxbScaleButton ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── JxbScaleButton │ ├── JxbScaleButton.h │ └── JxbScaleButton.m ├── ViewController.h ├── ViewController.m └── main.m ├── JxbScaleButtonTests ├── Info.plist └── JxbScaleButtonTests.m ├── LICENSE ├── README.md └── screenshot.gif /JxbScaleButton.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton.podspec -------------------------------------------------------------------------------- /JxbScaleButton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JxbScaleButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /JxbScaleButton.xcodeproj/project.xcworkspace/xcshareddata/JxbScaleButton.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton.xcodeproj/project.xcworkspace/xcshareddata/JxbScaleButton.xccheckout -------------------------------------------------------------------------------- /JxbScaleButton.xcodeproj/project.xcworkspace/xcuserdata/Peter.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton.xcodeproj/project.xcworkspace/xcuserdata/Peter.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /JxbScaleButton.xcodeproj/xcuserdata/Peter.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton.xcodeproj/xcuserdata/Peter.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /JxbScaleButton.xcodeproj/xcuserdata/Peter.xcuserdatad/xcschemes/JxbScaleButton.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton.xcodeproj/xcuserdata/Peter.xcuserdatad/xcschemes/JxbScaleButton.xcscheme -------------------------------------------------------------------------------- /JxbScaleButton.xcodeproj/xcuserdata/Peter.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton.xcodeproj/xcuserdata/Peter.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /JxbScaleButton/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton/AppDelegate.h -------------------------------------------------------------------------------- /JxbScaleButton/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton/AppDelegate.m -------------------------------------------------------------------------------- /JxbScaleButton/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /JxbScaleButton/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /JxbScaleButton/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /JxbScaleButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton/Info.plist -------------------------------------------------------------------------------- /JxbScaleButton/JxbScaleButton/JxbScaleButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton/JxbScaleButton/JxbScaleButton.h -------------------------------------------------------------------------------- /JxbScaleButton/JxbScaleButton/JxbScaleButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton/JxbScaleButton/JxbScaleButton.m -------------------------------------------------------------------------------- /JxbScaleButton/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton/ViewController.h -------------------------------------------------------------------------------- /JxbScaleButton/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton/ViewController.m -------------------------------------------------------------------------------- /JxbScaleButton/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButton/main.m -------------------------------------------------------------------------------- /JxbScaleButtonTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButtonTests/Info.plist -------------------------------------------------------------------------------- /JxbScaleButtonTests/JxbScaleButtonTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/JxbScaleButtonTests/JxbScaleButtonTests.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JxbSir/JxbScaleButton/HEAD/screenshot.gif --------------------------------------------------------------------------------