├── README.md ├── SingleMask.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── liuchengli.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── liuchengli.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── SingleMask.xcscheme │ └── xcschememanagement.plist └── SingleMask ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json ├── 分时引导.imageset │ ├── Contents.json │ ├── 分时引导@2x.png │ └── 分时引导@3x.png ├── 组合收益.imageset │ ├── Contents.json │ ├── 组合收益@2x.png │ └── 组合收益@3x.png └── 首页引导.imageset │ ├── Contents.json │ ├── 首页引导@2x.png │ └── 首页引导@3x.png ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── LoadMaskHelper.h ├── LoadMaskHelper.m ├── SingleMaskView.h ├── SingleMaskView.m ├── UIView+SetRect.h ├── UIView+SetRect.m ├── ViewController.h ├── ViewController.m └── main.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/README.md -------------------------------------------------------------------------------- /SingleMask.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SingleMask.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SingleMask.xcodeproj/project.xcworkspace/xcuserdata/liuchengli.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask.xcodeproj/project.xcworkspace/xcuserdata/liuchengli.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SingleMask.xcodeproj/xcuserdata/liuchengli.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask.xcodeproj/xcuserdata/liuchengli.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SingleMask.xcodeproj/xcuserdata/liuchengli.xcuserdatad/xcschemes/SingleMask.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask.xcodeproj/xcuserdata/liuchengli.xcuserdatad/xcschemes/SingleMask.xcscheme -------------------------------------------------------------------------------- /SingleMask.xcodeproj/xcuserdata/liuchengli.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask.xcodeproj/xcuserdata/liuchengli.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SingleMask/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/AppDelegate.h -------------------------------------------------------------------------------- /SingleMask/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/AppDelegate.m -------------------------------------------------------------------------------- /SingleMask/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SingleMask/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SingleMask/Assets.xcassets/分时引导.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/Assets.xcassets/分时引导.imageset/Contents.json -------------------------------------------------------------------------------- /SingleMask/Assets.xcassets/分时引导.imageset/分时引导@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/Assets.xcassets/分时引导.imageset/分时引导@2x.png -------------------------------------------------------------------------------- /SingleMask/Assets.xcassets/分时引导.imageset/分时引导@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/Assets.xcassets/分时引导.imageset/分时引导@3x.png -------------------------------------------------------------------------------- /SingleMask/Assets.xcassets/组合收益.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/Assets.xcassets/组合收益.imageset/Contents.json -------------------------------------------------------------------------------- /SingleMask/Assets.xcassets/组合收益.imageset/组合收益@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/Assets.xcassets/组合收益.imageset/组合收益@2x.png -------------------------------------------------------------------------------- /SingleMask/Assets.xcassets/组合收益.imageset/组合收益@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/Assets.xcassets/组合收益.imageset/组合收益@3x.png -------------------------------------------------------------------------------- /SingleMask/Assets.xcassets/首页引导.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/Assets.xcassets/首页引导.imageset/Contents.json -------------------------------------------------------------------------------- /SingleMask/Assets.xcassets/首页引导.imageset/首页引导@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/Assets.xcassets/首页引导.imageset/首页引导@2x.png -------------------------------------------------------------------------------- /SingleMask/Assets.xcassets/首页引导.imageset/首页引导@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/Assets.xcassets/首页引导.imageset/首页引导@3x.png -------------------------------------------------------------------------------- /SingleMask/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SingleMask/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SingleMask/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/Info.plist -------------------------------------------------------------------------------- /SingleMask/LoadMaskHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/LoadMaskHelper.h -------------------------------------------------------------------------------- /SingleMask/LoadMaskHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/LoadMaskHelper.m -------------------------------------------------------------------------------- /SingleMask/SingleMaskView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/SingleMaskView.h -------------------------------------------------------------------------------- /SingleMask/SingleMaskView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/SingleMaskView.m -------------------------------------------------------------------------------- /SingleMask/UIView+SetRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/UIView+SetRect.h -------------------------------------------------------------------------------- /SingleMask/UIView+SetRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/UIView+SetRect.m -------------------------------------------------------------------------------- /SingleMask/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/ViewController.h -------------------------------------------------------------------------------- /SingleMask/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/ViewController.m -------------------------------------------------------------------------------- /SingleMask/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuchengli/SingleMaskView/HEAD/SingleMask/main.m --------------------------------------------------------------------------------