├── CATCurveProgressView.podspec ├── CATCurveProgressView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── catch.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── zengcatch.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── catch.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── CATCurveProgressView.xcscheme │ │ └── xcschememanagement.plist │ └── zengcatch.xcuserdatad │ └── xcschemes │ ├── CATCurveProgressView.xcscheme │ └── xcschememanagement.plist ├── CATCurveProgressView ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CATCurveProgressView │ ├── CATCurveProgressView.h │ └── CATCurveProgressView.m ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── CATCurveProgressViewTests ├── CATCurveProgressViewTests.m └── Info.plist ├── CATCurveProgressViewUITests ├── CATCurveProgressViewUITests.m └── Info.plist ├── LICENSE ├── README.md └── images ├── 1.gif └── 2.gif /CATCurveProgressView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView.podspec -------------------------------------------------------------------------------- /CATCurveProgressView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CATCurveProgressView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CATCurveProgressView.xcodeproj/project.xcworkspace/xcuserdata/catch.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView.xcodeproj/project.xcworkspace/xcuserdata/catch.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CATCurveProgressView.xcodeproj/project.xcworkspace/xcuserdata/zengcatch.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView.xcodeproj/project.xcworkspace/xcuserdata/zengcatch.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CATCurveProgressView.xcodeproj/xcuserdata/catch.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView.xcodeproj/xcuserdata/catch.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CATCurveProgressView.xcodeproj/xcuserdata/catch.xcuserdatad/xcschemes/CATCurveProgressView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView.xcodeproj/xcuserdata/catch.xcuserdatad/xcschemes/CATCurveProgressView.xcscheme -------------------------------------------------------------------------------- /CATCurveProgressView.xcodeproj/xcuserdata/catch.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView.xcodeproj/xcuserdata/catch.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CATCurveProgressView.xcodeproj/xcuserdata/zengcatch.xcuserdatad/xcschemes/CATCurveProgressView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView.xcodeproj/xcuserdata/zengcatch.xcuserdatad/xcschemes/CATCurveProgressView.xcscheme -------------------------------------------------------------------------------- /CATCurveProgressView.xcodeproj/xcuserdata/zengcatch.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView.xcodeproj/xcuserdata/zengcatch.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CATCurveProgressView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView/AppDelegate.h -------------------------------------------------------------------------------- /CATCurveProgressView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView/AppDelegate.m -------------------------------------------------------------------------------- /CATCurveProgressView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CATCurveProgressView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CATCurveProgressView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CATCurveProgressView/CATCurveProgressView/CATCurveProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView/CATCurveProgressView/CATCurveProgressView.h -------------------------------------------------------------------------------- /CATCurveProgressView/CATCurveProgressView/CATCurveProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView/CATCurveProgressView/CATCurveProgressView.m -------------------------------------------------------------------------------- /CATCurveProgressView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView/Info.plist -------------------------------------------------------------------------------- /CATCurveProgressView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView/ViewController.h -------------------------------------------------------------------------------- /CATCurveProgressView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView/ViewController.m -------------------------------------------------------------------------------- /CATCurveProgressView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressView/main.m -------------------------------------------------------------------------------- /CATCurveProgressViewTests/CATCurveProgressViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressViewTests/CATCurveProgressViewTests.m -------------------------------------------------------------------------------- /CATCurveProgressViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressViewTests/Info.plist -------------------------------------------------------------------------------- /CATCurveProgressViewUITests/CATCurveProgressViewUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressViewUITests/CATCurveProgressViewUITests.m -------------------------------------------------------------------------------- /CATCurveProgressViewUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/CATCurveProgressViewUITests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/README.md -------------------------------------------------------------------------------- /images/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/images/1.gif -------------------------------------------------------------------------------- /images/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatchZeng/CATCurveProgressView/HEAD/images/2.gif --------------------------------------------------------------------------------