├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── ZSYMaskView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-ZSYMaskView_Example │ │ ├── Pods-ZSYMaskView_Example-Info.plist │ │ ├── Pods-ZSYMaskView_Example-acknowledgements.markdown │ │ ├── Pods-ZSYMaskView_Example-acknowledgements.plist │ │ ├── Pods-ZSYMaskView_Example-dummy.m │ │ ├── Pods-ZSYMaskView_Example-frameworks.sh │ │ ├── Pods-ZSYMaskView_Example-umbrella.h │ │ ├── Pods-ZSYMaskView_Example.debug.xcconfig │ │ ├── Pods-ZSYMaskView_Example.modulemap │ │ └── Pods-ZSYMaskView_Example.release.xcconfig │ │ ├── Pods-ZSYMaskView_Tests │ │ ├── Pods-ZSYMaskView_Tests-Info.plist │ │ ├── Pods-ZSYMaskView_Tests-acknowledgements.markdown │ │ ├── Pods-ZSYMaskView_Tests-acknowledgements.plist │ │ ├── Pods-ZSYMaskView_Tests-dummy.m │ │ ├── Pods-ZSYMaskView_Tests-umbrella.h │ │ ├── Pods-ZSYMaskView_Tests.debug.xcconfig │ │ ├── Pods-ZSYMaskView_Tests.modulemap │ │ └── Pods-ZSYMaskView_Tests.release.xcconfig │ │ └── ZSYMaskView │ │ ├── ZSYMaskView-Info.plist │ │ ├── ZSYMaskView-dummy.m │ │ ├── ZSYMaskView-prefix.pch │ │ ├── ZSYMaskView-umbrella.h │ │ ├── ZSYMaskView.debug.xcconfig │ │ ├── ZSYMaskView.modulemap │ │ └── ZSYMaskView.release.xcconfig ├── Tests │ ├── Info.plist │ └── Tests.swift ├── ZSYMaskView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── ZSYMaskView-Example.xcscheme ├── ZSYMaskView.xcworkspace │ └── contents.xcworkspacedata ├── ZSYMaskView │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CustomCellView.swift │ ├── CustomCellView.xib │ ├── CustomTableViewCell.swift │ ├── CustomTableViewCell.xib │ ├── Images.xcassets │ │ ├── 1.imageset │ │ │ ├── Contents.json │ │ │ └── head.jpg │ │ ├── 2.imageset │ │ │ ├── Contents.json │ │ │ └── head.jpg │ │ ├── 3.imageset │ │ │ ├── Contents.json │ │ │ └── timg.jpg │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── MaskForStaticViewController.swift │ ├── ViewController.swift │ ├── ZSYScrollViewController.swift │ ├── ZSYStaticViewController.swift │ └── ZSYTableViewController.swift └── images │ ├── scrollview.gif │ ├── staticview.gif │ └── tableview.gif ├── LICENSE ├── README.md ├── ZSYMaskView.podspec ├── ZSYMaskView ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── ZSYMaskViewController.swift └── _Pods.xcodeproj /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/ZSYMaskView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Local Podspecs/ZSYMaskView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZSYMaskView_Example/Pods-ZSYMaskView_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/Pods-ZSYMaskView_Example/Pods-ZSYMaskView_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZSYMaskView_Example/Pods-ZSYMaskView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/Pods-ZSYMaskView_Example/Pods-ZSYMaskView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZSYMaskView_Example/Pods-ZSYMaskView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/Pods-ZSYMaskView_Example/Pods-ZSYMaskView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZSYMaskView_Example/Pods-ZSYMaskView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/Pods-ZSYMaskView_Example/Pods-ZSYMaskView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZSYMaskView_Example/Pods-ZSYMaskView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/Pods-ZSYMaskView_Example/Pods-ZSYMaskView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZSYMaskView_Example/Pods-ZSYMaskView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/Pods-ZSYMaskView_Example/Pods-ZSYMaskView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZSYMaskView_Example/Pods-ZSYMaskView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/Pods-ZSYMaskView_Example/Pods-ZSYMaskView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZSYMaskView_Example/Pods-ZSYMaskView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/Pods-ZSYMaskView_Example/Pods-ZSYMaskView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZSYMaskView_Example/Pods-ZSYMaskView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/Pods-ZSYMaskView_Example/Pods-ZSYMaskView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZSYMaskView_Tests/Pods-ZSYMaskView_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/Pods-ZSYMaskView_Tests/Pods-ZSYMaskView_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZSYMaskView_Tests/Pods-ZSYMaskView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/Pods-ZSYMaskView_Tests/Pods-ZSYMaskView_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZSYMaskView_Tests/Pods-ZSYMaskView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/Pods-ZSYMaskView_Tests/Pods-ZSYMaskView_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZSYMaskView_Tests/Pods-ZSYMaskView_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/Pods-ZSYMaskView_Tests/Pods-ZSYMaskView_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZSYMaskView_Tests/Pods-ZSYMaskView_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/Pods-ZSYMaskView_Tests/Pods-ZSYMaskView_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZSYMaskView_Tests/Pods-ZSYMaskView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/Pods-ZSYMaskView_Tests/Pods-ZSYMaskView_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZSYMaskView_Tests/Pods-ZSYMaskView_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/Pods-ZSYMaskView_Tests/Pods-ZSYMaskView_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ZSYMaskView_Tests/Pods-ZSYMaskView_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/Pods-ZSYMaskView_Tests/Pods-ZSYMaskView_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ZSYMaskView/ZSYMaskView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/ZSYMaskView/ZSYMaskView-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ZSYMaskView/ZSYMaskView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/ZSYMaskView/ZSYMaskView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ZSYMaskView/ZSYMaskView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/ZSYMaskView/ZSYMaskView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ZSYMaskView/ZSYMaskView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/ZSYMaskView/ZSYMaskView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ZSYMaskView/ZSYMaskView.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/ZSYMaskView/ZSYMaskView.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ZSYMaskView/ZSYMaskView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/ZSYMaskView/ZSYMaskView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ZSYMaskView/ZSYMaskView.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Pods/Target Support Files/ZSYMaskView/ZSYMaskView.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /Example/ZSYMaskView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ZSYMaskView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ZSYMaskView.xcodeproj/xcshareddata/xcschemes/ZSYMaskView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView.xcodeproj/xcshareddata/xcschemes/ZSYMaskView-Example.xcscheme -------------------------------------------------------------------------------- /Example/ZSYMaskView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ZSYMaskView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/ZSYMaskView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/ZSYMaskView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ZSYMaskView/CustomCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/CustomCellView.swift -------------------------------------------------------------------------------- /Example/ZSYMaskView/CustomCellView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/CustomCellView.xib -------------------------------------------------------------------------------- /Example/ZSYMaskView/CustomTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/CustomTableViewCell.swift -------------------------------------------------------------------------------- /Example/ZSYMaskView/CustomTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/CustomTableViewCell.xib -------------------------------------------------------------------------------- /Example/ZSYMaskView/Images.xcassets/1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/Images.xcassets/1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZSYMaskView/Images.xcassets/1.imageset/head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/Images.xcassets/1.imageset/head.jpg -------------------------------------------------------------------------------- /Example/ZSYMaskView/Images.xcassets/2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/Images.xcassets/2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZSYMaskView/Images.xcassets/2.imageset/head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/Images.xcassets/2.imageset/head.jpg -------------------------------------------------------------------------------- /Example/ZSYMaskView/Images.xcassets/3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/Images.xcassets/3.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ZSYMaskView/Images.xcassets/3.imageset/timg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/Images.xcassets/3.imageset/timg.jpg -------------------------------------------------------------------------------- /Example/ZSYMaskView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ZSYMaskView/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ZSYMaskView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/Info.plist -------------------------------------------------------------------------------- /Example/ZSYMaskView/MaskForStaticViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/MaskForStaticViewController.swift -------------------------------------------------------------------------------- /Example/ZSYMaskView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/ViewController.swift -------------------------------------------------------------------------------- /Example/ZSYMaskView/ZSYScrollViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/ZSYScrollViewController.swift -------------------------------------------------------------------------------- /Example/ZSYMaskView/ZSYStaticViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/ZSYStaticViewController.swift -------------------------------------------------------------------------------- /Example/ZSYMaskView/ZSYTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/ZSYMaskView/ZSYTableViewController.swift -------------------------------------------------------------------------------- /Example/images/scrollview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/images/scrollview.gif -------------------------------------------------------------------------------- /Example/images/staticview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/images/staticview.gif -------------------------------------------------------------------------------- /Example/images/tableview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/Example/images/tableview.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/README.md -------------------------------------------------------------------------------- /ZSYMaskView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/ZSYMaskView.podspec -------------------------------------------------------------------------------- /ZSYMaskView/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ZSYMaskView/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ZSYMaskView/Classes/ZSYMaskViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhusongyu/ZSYMaskView/HEAD/ZSYMaskView/Classes/ZSYMaskViewController.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------