├── .gitignore ├── Info.plist ├── LICENSE ├── README.md ├── UIImage+Alpha.h ├── UIImage+Alpha.m ├── UIImage+Resize.h ├── UIImage+Resize.m ├── UIImage+RoundedCorner.h ├── UIImage+RoundedCorner.m ├── UIImage-Categories.podspec ├── UIImage-Categories.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── UIImage-Categories.xcscheme └── UIImageCategories.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbcharbonneau/UIImage-Categories/HEAD/.gitignore -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbcharbonneau/UIImage-Categories/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbcharbonneau/UIImage-Categories/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbcharbonneau/UIImage-Categories/HEAD/README.md -------------------------------------------------------------------------------- /UIImage+Alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbcharbonneau/UIImage-Categories/HEAD/UIImage+Alpha.h -------------------------------------------------------------------------------- /UIImage+Alpha.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbcharbonneau/UIImage-Categories/HEAD/UIImage+Alpha.m -------------------------------------------------------------------------------- /UIImage+Resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbcharbonneau/UIImage-Categories/HEAD/UIImage+Resize.h -------------------------------------------------------------------------------- /UIImage+Resize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbcharbonneau/UIImage-Categories/HEAD/UIImage+Resize.m -------------------------------------------------------------------------------- /UIImage+RoundedCorner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbcharbonneau/UIImage-Categories/HEAD/UIImage+RoundedCorner.h -------------------------------------------------------------------------------- /UIImage+RoundedCorner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbcharbonneau/UIImage-Categories/HEAD/UIImage+RoundedCorner.m -------------------------------------------------------------------------------- /UIImage-Categories.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbcharbonneau/UIImage-Categories/HEAD/UIImage-Categories.podspec -------------------------------------------------------------------------------- /UIImage-Categories.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbcharbonneau/UIImage-Categories/HEAD/UIImage-Categories.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UIImage-Categories.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbcharbonneau/UIImage-Categories/HEAD/UIImage-Categories.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UIImage-Categories.xcodeproj/xcshareddata/xcschemes/UIImage-Categories.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbcharbonneau/UIImage-Categories/HEAD/UIImage-Categories.xcodeproj/xcshareddata/xcschemes/UIImage-Categories.xcscheme -------------------------------------------------------------------------------- /UIImageCategories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbcharbonneau/UIImage-Categories/HEAD/UIImageCategories.h --------------------------------------------------------------------------------