├── 10fps-2.gif ├── 10fps-3.gif ├── 10fps.gif ├── LICENSE ├── ProgressMaskView.podspec ├── ProgressMaskView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcshareddata │ └── xcschemes │ │ └── ProgressMaskView.xcscheme └── xcuserdata │ └── yusoftware.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── ProgressMaskView ├── ArcShape.swift ├── Info.plist ├── LineArcRotateView.swift ├── LineArcView.swift ├── ProgressMaskBarParameter.swift ├── ProgressMaskView.h ├── ProgressMaskView.swift ├── RotateLayer.swift ├── SimpleRView.swift └── Tools.swift ├── ProgressMaskViewTests ├── Info.plist └── ProgressMaskViewTests.swift ├── README.md ├── TestProgressMaskViewApp ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CommonParts │ ├── ParameterControlView.swift │ ├── ParameterControlView.xib │ ├── SidewayView.swift │ └── SimpleRView.swift ├── Extensions │ ├── BinaryFloatingPointExtensions.swift │ ├── CGFloatExtensions.swift │ ├── UIColorExtensions.swift │ └── UIViewExtensions.swift ├── Info.plist ├── MainTableViewController.swift ├── ParameterDemoViewController.swift ├── RandamDemoViewController.swift ├── SampleProcess.swift └── SceneDelegate.swift ├── TestProgressMaskViewAppTests ├── Info.plist └── TestProgressMaskViewTests.swift └── TestProgressMaskViewAppUITests ├── Info.plist └── TestProgressMaskViewUITests.swift /10fps-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/10fps-2.gif -------------------------------------------------------------------------------- /10fps-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/10fps-3.gif -------------------------------------------------------------------------------- /10fps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/10fps.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/LICENSE -------------------------------------------------------------------------------- /ProgressMaskView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/ProgressMaskView.podspec -------------------------------------------------------------------------------- /ProgressMaskView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/ProgressMaskView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ProgressMaskView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/ProgressMaskView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ProgressMaskView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/ProgressMaskView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ProgressMaskView.xcodeproj/xcshareddata/xcschemes/ProgressMaskView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/ProgressMaskView.xcodeproj/xcshareddata/xcschemes/ProgressMaskView.xcscheme -------------------------------------------------------------------------------- /ProgressMaskView.xcodeproj/xcuserdata/yusoftware.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/ProgressMaskView.xcodeproj/xcuserdata/yusoftware.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ProgressMaskView/ArcShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/ProgressMaskView/ArcShape.swift -------------------------------------------------------------------------------- /ProgressMaskView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/ProgressMaskView/Info.plist -------------------------------------------------------------------------------- /ProgressMaskView/LineArcRotateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/ProgressMaskView/LineArcRotateView.swift -------------------------------------------------------------------------------- /ProgressMaskView/LineArcView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/ProgressMaskView/LineArcView.swift -------------------------------------------------------------------------------- /ProgressMaskView/ProgressMaskBarParameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/ProgressMaskView/ProgressMaskBarParameter.swift -------------------------------------------------------------------------------- /ProgressMaskView/ProgressMaskView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/ProgressMaskView/ProgressMaskView.h -------------------------------------------------------------------------------- /ProgressMaskView/ProgressMaskView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/ProgressMaskView/ProgressMaskView.swift -------------------------------------------------------------------------------- /ProgressMaskView/RotateLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/ProgressMaskView/RotateLayer.swift -------------------------------------------------------------------------------- /ProgressMaskView/SimpleRView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/ProgressMaskView/SimpleRView.swift -------------------------------------------------------------------------------- /ProgressMaskView/Tools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/ProgressMaskView/Tools.swift -------------------------------------------------------------------------------- /ProgressMaskViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/ProgressMaskViewTests/Info.plist -------------------------------------------------------------------------------- /ProgressMaskViewTests/ProgressMaskViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/ProgressMaskViewTests/ProgressMaskViewTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/README.md -------------------------------------------------------------------------------- /TestProgressMaskViewApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/AppDelegate.swift -------------------------------------------------------------------------------- /TestProgressMaskViewApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TestProgressMaskViewApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TestProgressMaskViewApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TestProgressMaskViewApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TestProgressMaskViewApp/CommonParts/ParameterControlView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/CommonParts/ParameterControlView.swift -------------------------------------------------------------------------------- /TestProgressMaskViewApp/CommonParts/ParameterControlView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/CommonParts/ParameterControlView.xib -------------------------------------------------------------------------------- /TestProgressMaskViewApp/CommonParts/SidewayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/CommonParts/SidewayView.swift -------------------------------------------------------------------------------- /TestProgressMaskViewApp/CommonParts/SimpleRView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/CommonParts/SimpleRView.swift -------------------------------------------------------------------------------- /TestProgressMaskViewApp/Extensions/BinaryFloatingPointExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/Extensions/BinaryFloatingPointExtensions.swift -------------------------------------------------------------------------------- /TestProgressMaskViewApp/Extensions/CGFloatExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/Extensions/CGFloatExtensions.swift -------------------------------------------------------------------------------- /TestProgressMaskViewApp/Extensions/UIColorExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/Extensions/UIColorExtensions.swift -------------------------------------------------------------------------------- /TestProgressMaskViewApp/Extensions/UIViewExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/Extensions/UIViewExtensions.swift -------------------------------------------------------------------------------- /TestProgressMaskViewApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/Info.plist -------------------------------------------------------------------------------- /TestProgressMaskViewApp/MainTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/MainTableViewController.swift -------------------------------------------------------------------------------- /TestProgressMaskViewApp/ParameterDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/ParameterDemoViewController.swift -------------------------------------------------------------------------------- /TestProgressMaskViewApp/RandamDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/RandamDemoViewController.swift -------------------------------------------------------------------------------- /TestProgressMaskViewApp/SampleProcess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/SampleProcess.swift -------------------------------------------------------------------------------- /TestProgressMaskViewApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewApp/SceneDelegate.swift -------------------------------------------------------------------------------- /TestProgressMaskViewAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewAppTests/Info.plist -------------------------------------------------------------------------------- /TestProgressMaskViewAppTests/TestProgressMaskViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewAppTests/TestProgressMaskViewTests.swift -------------------------------------------------------------------------------- /TestProgressMaskViewAppUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewAppUITests/Info.plist -------------------------------------------------------------------------------- /TestProgressMaskViewAppUITests/TestProgressMaskViewUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eytyet/ProgressMaskView/HEAD/TestProgressMaskViewAppUITests/TestProgressMaskViewUITests.swift --------------------------------------------------------------------------------