├── .gitignore ├── Readme.md ├── Sample.png ├── Scratch & See.xcodeproj └── project.pbxproj ├── Scratch & See ├── Classes │ ├── Example │ │ ├── MDScratchSampleViewController.h │ │ └── MDScratchSampleViewController.m │ └── MDScratchImageView │ │ ├── MDMatrix.h │ │ ├── MDMatrix.m │ │ ├── MDScratchImageView.h │ │ └── MDScratchImageView.mm ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── Icon.png │ └── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── Default-568h@2x.png │ │ └── Default@2x.png ├── MDAppDelegate.h ├── MDAppDelegate.m ├── Resources │ ├── paint01-01.png │ ├── paint01-01blur.png │ ├── paint01-02.png │ ├── paint01-02blur.png │ ├── paint01-03@2x.png │ └── paint01-03blur@2x.png ├── Scratch & See-Info.plist ├── Scratch & See-Prefix.pch ├── en.lproj │ └── InfoPlist.strings └── main.m └── Scratch & SeeTests ├── Scratch & SeeTests-Info.plist ├── Scratch___SeeTests.m └── en.lproj └── InfoPlist.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Readme.md -------------------------------------------------------------------------------- /Sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Sample.png -------------------------------------------------------------------------------- /Scratch & See.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Scratch & See/Classes/Example/MDScratchSampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Classes/Example/MDScratchSampleViewController.h -------------------------------------------------------------------------------- /Scratch & See/Classes/Example/MDScratchSampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Classes/Example/MDScratchSampleViewController.m -------------------------------------------------------------------------------- /Scratch & See/Classes/MDScratchImageView/MDMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Classes/MDScratchImageView/MDMatrix.h -------------------------------------------------------------------------------- /Scratch & See/Classes/MDScratchImageView/MDMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Classes/MDScratchImageView/MDMatrix.m -------------------------------------------------------------------------------- /Scratch & See/Classes/MDScratchImageView/MDScratchImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Classes/MDScratchImageView/MDScratchImageView.h -------------------------------------------------------------------------------- /Scratch & See/Classes/MDScratchImageView/MDScratchImageView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Classes/MDScratchImageView/MDScratchImageView.mm -------------------------------------------------------------------------------- /Scratch & See/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Scratch & See/Images.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Images.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /Scratch & See/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Scratch & See/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /Scratch & See/Images.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Images.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /Scratch & See/MDAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/MDAppDelegate.h -------------------------------------------------------------------------------- /Scratch & See/MDAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/MDAppDelegate.m -------------------------------------------------------------------------------- /Scratch & See/Resources/paint01-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Resources/paint01-01.png -------------------------------------------------------------------------------- /Scratch & See/Resources/paint01-01blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Resources/paint01-01blur.png -------------------------------------------------------------------------------- /Scratch & See/Resources/paint01-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Resources/paint01-02.png -------------------------------------------------------------------------------- /Scratch & See/Resources/paint01-02blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Resources/paint01-02blur.png -------------------------------------------------------------------------------- /Scratch & See/Resources/paint01-03@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Resources/paint01-03@2x.png -------------------------------------------------------------------------------- /Scratch & See/Resources/paint01-03blur@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Resources/paint01-03blur@2x.png -------------------------------------------------------------------------------- /Scratch & See/Scratch & See-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Scratch & See-Info.plist -------------------------------------------------------------------------------- /Scratch & See/Scratch & See-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/Scratch & See-Prefix.pch -------------------------------------------------------------------------------- /Scratch & See/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Scratch & See/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & See/main.m -------------------------------------------------------------------------------- /Scratch & SeeTests/Scratch & SeeTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & SeeTests/Scratch & SeeTests-Info.plist -------------------------------------------------------------------------------- /Scratch & SeeTests/Scratch___SeeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moqod/ios-scratch-n-see/HEAD/Scratch & SeeTests/Scratch___SeeTests.m -------------------------------------------------------------------------------- /Scratch & SeeTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------