├── README.md ├── VMGearsLoading.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── VMGearsLoading.xccheckout └── xcuserdata │ └── vumai.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── VMGearsLoading.xcscheme │ └── xcschememanagement.plist ├── VMGearsLoading ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Images │ ├── Layer 1.png │ ├── Layer 1@2x.png │ ├── Layer 1@3x.png │ ├── background.png │ ├── background@2x.png │ ├── background@3x.png │ ├── gears 1.png │ ├── gears 1@2x.png │ ├── gears 1@3x.png │ ├── gears 2.png │ ├── gears 2@2x.png │ ├── gears 2@3x.png │ ├── gears 3.png │ ├── gears 3@2x.png │ ├── gears 3@3x.png │ └── imgDemo.png ├── Info.plist ├── VMGearLoadingView.h ├── VMGearLoadingView.m ├── ViewController.h ├── ViewController.m └── main.m └── VMGearsLoadingTests ├── Info.plist └── VMGearsLoadingTests.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/README.md -------------------------------------------------------------------------------- /VMGearsLoading.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VMGearsLoading.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VMGearsLoading.xcodeproj/project.xcworkspace/xcshareddata/VMGearsLoading.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading.xcodeproj/project.xcworkspace/xcshareddata/VMGearsLoading.xccheckout -------------------------------------------------------------------------------- /VMGearsLoading.xcodeproj/xcuserdata/vumai.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading.xcodeproj/xcuserdata/vumai.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /VMGearsLoading.xcodeproj/xcuserdata/vumai.xcuserdatad/xcschemes/VMGearsLoading.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading.xcodeproj/xcuserdata/vumai.xcuserdatad/xcschemes/VMGearsLoading.xcscheme -------------------------------------------------------------------------------- /VMGearsLoading.xcodeproj/xcuserdata/vumai.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading.xcodeproj/xcuserdata/vumai.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /VMGearsLoading/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/AppDelegate.h -------------------------------------------------------------------------------- /VMGearsLoading/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/AppDelegate.m -------------------------------------------------------------------------------- /VMGearsLoading/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /VMGearsLoading/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /VMGearsLoading/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VMGearsLoading/Images/Layer 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Images/Layer 1.png -------------------------------------------------------------------------------- /VMGearsLoading/Images/Layer 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Images/Layer 1@2x.png -------------------------------------------------------------------------------- /VMGearsLoading/Images/Layer 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Images/Layer 1@3x.png -------------------------------------------------------------------------------- /VMGearsLoading/Images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Images/background.png -------------------------------------------------------------------------------- /VMGearsLoading/Images/background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Images/background@2x.png -------------------------------------------------------------------------------- /VMGearsLoading/Images/background@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Images/background@3x.png -------------------------------------------------------------------------------- /VMGearsLoading/Images/gears 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Images/gears 1.png -------------------------------------------------------------------------------- /VMGearsLoading/Images/gears 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Images/gears 1@2x.png -------------------------------------------------------------------------------- /VMGearsLoading/Images/gears 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Images/gears 1@3x.png -------------------------------------------------------------------------------- /VMGearsLoading/Images/gears 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Images/gears 2.png -------------------------------------------------------------------------------- /VMGearsLoading/Images/gears 2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Images/gears 2@2x.png -------------------------------------------------------------------------------- /VMGearsLoading/Images/gears 2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Images/gears 2@3x.png -------------------------------------------------------------------------------- /VMGearsLoading/Images/gears 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Images/gears 3.png -------------------------------------------------------------------------------- /VMGearsLoading/Images/gears 3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Images/gears 3@2x.png -------------------------------------------------------------------------------- /VMGearsLoading/Images/gears 3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Images/gears 3@3x.png -------------------------------------------------------------------------------- /VMGearsLoading/Images/imgDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Images/imgDemo.png -------------------------------------------------------------------------------- /VMGearsLoading/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/Info.plist -------------------------------------------------------------------------------- /VMGearsLoading/VMGearLoadingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/VMGearLoadingView.h -------------------------------------------------------------------------------- /VMGearsLoading/VMGearLoadingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/VMGearLoadingView.m -------------------------------------------------------------------------------- /VMGearsLoading/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/ViewController.h -------------------------------------------------------------------------------- /VMGearsLoading/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/ViewController.m -------------------------------------------------------------------------------- /VMGearsLoading/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoading/main.m -------------------------------------------------------------------------------- /VMGearsLoadingTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoadingTests/Info.plist -------------------------------------------------------------------------------- /VMGearsLoadingTests/VMGearsLoadingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VuMai/VMGearsLoading/HEAD/VMGearsLoadingTests/VMGearsLoadingTests.m --------------------------------------------------------------------------------