├── GaugeDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── Gordon.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── Gordon.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── demo.xcscheme │ └── xcschememanagement.plist ├── README.md ├── demo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Common.h ├── Common.m ├── GaugeView.h ├── GaugeView.m ├── Info.plist ├── ProgressView.h ├── ProgressView.m ├── UIView+ViewExtention.h ├── UIView+ViewExtention.m ├── ViewController.h ├── ViewController.m ├── ViewDemo1ViewController.h ├── ViewDemo1ViewController.m ├── ViewDemo2.h ├── ViewDemo2.m └── main.m ├── demoImg1.png └── demoImg2.png /GaugeDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/GaugeDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GaugeDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/GaugeDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GaugeDemo.xcodeproj/project.xcworkspace/xcuserdata/Gordon.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/GaugeDemo.xcodeproj/project.xcworkspace/xcuserdata/Gordon.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /GaugeDemo.xcodeproj/xcuserdata/Gordon.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/GaugeDemo.xcodeproj/xcuserdata/Gordon.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /GaugeDemo.xcodeproj/xcuserdata/Gordon.xcuserdatad/xcschemes/demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/GaugeDemo.xcodeproj/xcuserdata/Gordon.xcuserdatad/xcschemes/demo.xcscheme -------------------------------------------------------------------------------- /GaugeDemo.xcodeproj/xcuserdata/Gordon.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/GaugeDemo.xcodeproj/xcuserdata/Gordon.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/README.md -------------------------------------------------------------------------------- /demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/AppDelegate.h -------------------------------------------------------------------------------- /demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/AppDelegate.m -------------------------------------------------------------------------------- /demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /demo/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/Common.h -------------------------------------------------------------------------------- /demo/Common.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/Common.m -------------------------------------------------------------------------------- /demo/GaugeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/GaugeView.h -------------------------------------------------------------------------------- /demo/GaugeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/GaugeView.m -------------------------------------------------------------------------------- /demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/Info.plist -------------------------------------------------------------------------------- /demo/ProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/ProgressView.h -------------------------------------------------------------------------------- /demo/ProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/ProgressView.m -------------------------------------------------------------------------------- /demo/UIView+ViewExtention.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/UIView+ViewExtention.h -------------------------------------------------------------------------------- /demo/UIView+ViewExtention.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/UIView+ViewExtention.m -------------------------------------------------------------------------------- /demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/ViewController.h -------------------------------------------------------------------------------- /demo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/ViewController.m -------------------------------------------------------------------------------- /demo/ViewDemo1ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/ViewDemo1ViewController.h -------------------------------------------------------------------------------- /demo/ViewDemo1ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/ViewDemo1ViewController.m -------------------------------------------------------------------------------- /demo/ViewDemo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/ViewDemo2.h -------------------------------------------------------------------------------- /demo/ViewDemo2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/ViewDemo2.m -------------------------------------------------------------------------------- /demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demo/main.m -------------------------------------------------------------------------------- /demoImg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demoImg1.png -------------------------------------------------------------------------------- /demoImg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianlonglv/GaugeDemo/HEAD/demoImg2.png --------------------------------------------------------------------------------