├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── SRScratchView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-SRScratchView_Example │ │ ├── Pods-SRScratchView_Example-Info.plist │ │ ├── Pods-SRScratchView_Example-acknowledgements.markdown │ │ ├── Pods-SRScratchView_Example-acknowledgements.plist │ │ ├── Pods-SRScratchView_Example-dummy.m │ │ ├── Pods-SRScratchView_Example-frameworks.sh │ │ ├── Pods-SRScratchView_Example-umbrella.h │ │ ├── Pods-SRScratchView_Example.debug.xcconfig │ │ ├── Pods-SRScratchView_Example.modulemap │ │ └── Pods-SRScratchView_Example.release.xcconfig │ │ ├── Pods-SRScratchView_Tests │ │ ├── Pods-SRScratchView_Tests-Info.plist │ │ ├── Pods-SRScratchView_Tests-acknowledgements.markdown │ │ ├── Pods-SRScratchView_Tests-acknowledgements.plist │ │ ├── Pods-SRScratchView_Tests-dummy.m │ │ ├── Pods-SRScratchView_Tests-umbrella.h │ │ ├── Pods-SRScratchView_Tests.debug.xcconfig │ │ ├── Pods-SRScratchView_Tests.modulemap │ │ └── Pods-SRScratchView_Tests.release.xcconfig │ │ └── SRScratchView │ │ ├── SRScratchView-Info.plist │ │ ├── SRScratchView-dummy.m │ │ ├── SRScratchView-prefix.pch │ │ ├── SRScratchView-umbrella.h │ │ ├── SRScratchView.modulemap │ │ └── SRScratchView.xcconfig ├── SRScratchView.xcodeproj │ ├── .project.pbxproj.swp │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── SRScratchView-Example.xcscheme ├── SRScratchView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── SRScratchView │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── goldTrophy.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-trophy-100.png │ │ ├── grayTrophy.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-trophy-100-3.png │ │ └── srachView.imageset │ │ │ ├── Contents.json │ │ │ └── grunge-texture-photoshop-2.jpg │ ├── Info.plist │ ├── ViewController.swift │ └── screenShot.gif └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md ├── SRScratchView.podspec ├── SRScratchView ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── SRScratchView.swift └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/SRScratchView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Local Podspecs/SRScratchView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRScratchView_Example/Pods-SRScratchView_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/Pods-SRScratchView_Example/Pods-SRScratchView_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRScratchView_Example/Pods-SRScratchView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/Pods-SRScratchView_Example/Pods-SRScratchView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRScratchView_Example/Pods-SRScratchView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/Pods-SRScratchView_Example/Pods-SRScratchView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRScratchView_Example/Pods-SRScratchView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/Pods-SRScratchView_Example/Pods-SRScratchView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRScratchView_Example/Pods-SRScratchView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/Pods-SRScratchView_Example/Pods-SRScratchView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRScratchView_Example/Pods-SRScratchView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/Pods-SRScratchView_Example/Pods-SRScratchView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRScratchView_Example/Pods-SRScratchView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/Pods-SRScratchView_Example/Pods-SRScratchView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRScratchView_Example/Pods-SRScratchView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/Pods-SRScratchView_Example/Pods-SRScratchView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRScratchView_Example/Pods-SRScratchView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/Pods-SRScratchView_Example/Pods-SRScratchView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRScratchView_Tests/Pods-SRScratchView_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/Pods-SRScratchView_Tests/Pods-SRScratchView_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRScratchView_Tests/Pods-SRScratchView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/Pods-SRScratchView_Tests/Pods-SRScratchView_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRScratchView_Tests/Pods-SRScratchView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/Pods-SRScratchView_Tests/Pods-SRScratchView_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRScratchView_Tests/Pods-SRScratchView_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/Pods-SRScratchView_Tests/Pods-SRScratchView_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRScratchView_Tests/Pods-SRScratchView_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/Pods-SRScratchView_Tests/Pods-SRScratchView_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRScratchView_Tests/Pods-SRScratchView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/Pods-SRScratchView_Tests/Pods-SRScratchView_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRScratchView_Tests/Pods-SRScratchView_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/Pods-SRScratchView_Tests/Pods-SRScratchView_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SRScratchView_Tests/Pods-SRScratchView_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/Pods-SRScratchView_Tests/Pods-SRScratchView_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SRScratchView/SRScratchView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/SRScratchView/SRScratchView-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SRScratchView/SRScratchView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/SRScratchView/SRScratchView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SRScratchView/SRScratchView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/SRScratchView/SRScratchView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SRScratchView/SRScratchView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/SRScratchView/SRScratchView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SRScratchView/SRScratchView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/SRScratchView/SRScratchView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SRScratchView/SRScratchView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Pods/Target Support Files/SRScratchView/SRScratchView.xcconfig -------------------------------------------------------------------------------- /Example/SRScratchView.xcodeproj/.project.pbxproj.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView.xcodeproj/.project.pbxproj.swp -------------------------------------------------------------------------------- /Example/SRScratchView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SRScratchView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SRScratchView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/SRScratchView.xcodeproj/xcshareddata/xcschemes/SRScratchView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView.xcodeproj/xcshareddata/xcschemes/SRScratchView-Example.xcscheme -------------------------------------------------------------------------------- /Example/SRScratchView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SRScratchView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/SRScratchView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/SRScratchView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/SRScratchView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/SRScratchView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SRScratchView/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/SRScratchView/Images.xcassets/goldTrophy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView/Images.xcassets/goldTrophy.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SRScratchView/Images.xcassets/goldTrophy.imageset/icons8-trophy-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView/Images.xcassets/goldTrophy.imageset/icons8-trophy-100.png -------------------------------------------------------------------------------- /Example/SRScratchView/Images.xcassets/grayTrophy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView/Images.xcassets/grayTrophy.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SRScratchView/Images.xcassets/grayTrophy.imageset/icons8-trophy-100-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView/Images.xcassets/grayTrophy.imageset/icons8-trophy-100-3.png -------------------------------------------------------------------------------- /Example/SRScratchView/Images.xcassets/srachView.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView/Images.xcassets/srachView.imageset/Contents.json -------------------------------------------------------------------------------- /Example/SRScratchView/Images.xcassets/srachView.imageset/grunge-texture-photoshop-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView/Images.xcassets/srachView.imageset/grunge-texture-photoshop-2.jpg -------------------------------------------------------------------------------- /Example/SRScratchView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView/Info.plist -------------------------------------------------------------------------------- /Example/SRScratchView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView/ViewController.swift -------------------------------------------------------------------------------- /Example/SRScratchView/screenShot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/SRScratchView/screenShot.gif -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/README.md -------------------------------------------------------------------------------- /SRScratchView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/SRScratchView.podspec -------------------------------------------------------------------------------- /SRScratchView/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SRScratchView/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SRScratchView/Classes/SRScratchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamshiranees/SRScratchView/HEAD/SRScratchView/Classes/SRScratchView.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------