├── .gitignore ├── ImageBlend.xcodeproj └── project.pbxproj ├── ImageBlend ├── AppDelegate.h ├── AppDelegate.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── ImageBlend-Info.plist ├── ImageBlend-Prefix.pch ├── UIImage+Tint.h ├── UIImage+Tint.m ├── ViewController.h ├── ViewController.m ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController_iPhone.xib ├── image.png └── main.m ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/VVImageTint/HEAD/.gitignore -------------------------------------------------------------------------------- /ImageBlend.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/VVImageTint/HEAD/ImageBlend.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ImageBlend/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/VVImageTint/HEAD/ImageBlend/AppDelegate.h -------------------------------------------------------------------------------- /ImageBlend/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/VVImageTint/HEAD/ImageBlend/AppDelegate.m -------------------------------------------------------------------------------- /ImageBlend/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/VVImageTint/HEAD/ImageBlend/Default-568h@2x.png -------------------------------------------------------------------------------- /ImageBlend/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/VVImageTint/HEAD/ImageBlend/Default.png -------------------------------------------------------------------------------- /ImageBlend/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/VVImageTint/HEAD/ImageBlend/Default@2x.png -------------------------------------------------------------------------------- /ImageBlend/ImageBlend-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/VVImageTint/HEAD/ImageBlend/ImageBlend-Info.plist -------------------------------------------------------------------------------- /ImageBlend/ImageBlend-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/VVImageTint/HEAD/ImageBlend/ImageBlend-Prefix.pch -------------------------------------------------------------------------------- /ImageBlend/UIImage+Tint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/VVImageTint/HEAD/ImageBlend/UIImage+Tint.h -------------------------------------------------------------------------------- /ImageBlend/UIImage+Tint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/VVImageTint/HEAD/ImageBlend/UIImage+Tint.m -------------------------------------------------------------------------------- /ImageBlend/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/VVImageTint/HEAD/ImageBlend/ViewController.h -------------------------------------------------------------------------------- /ImageBlend/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/VVImageTint/HEAD/ImageBlend/ViewController.m -------------------------------------------------------------------------------- /ImageBlend/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ImageBlend/en.lproj/ViewController_iPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/VVImageTint/HEAD/ImageBlend/en.lproj/ViewController_iPhone.xib -------------------------------------------------------------------------------- /ImageBlend/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/VVImageTint/HEAD/ImageBlend/image.png -------------------------------------------------------------------------------- /ImageBlend/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/VVImageTint/HEAD/ImageBlend/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/VVImageTint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onevcat/VVImageTint/HEAD/README.md --------------------------------------------------------------------------------