├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bf ├── bf.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── bf.xcscheme ├── bf │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── Main.storyboard │ ├── BetterFaceClass │ │ ├── UIImage+BetterFace.h │ │ ├── UIImage+BetterFace.m │ │ ├── UIImageView+BetterFace.h │ │ └── UIImageView+BetterFace.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Images │ │ ├── landscape │ │ │ ├── l1.jpg │ │ │ ├── l2.jpg │ │ │ ├── l3.jpg │ │ │ └── l4.jpg │ │ ├── multiple │ │ │ ├── m1.jpg │ │ │ └── m2.jpg │ │ └── up │ │ │ ├── up1.jpg │ │ │ ├── up2.jpg │ │ │ ├── up3.jpg │ │ │ └── up4.jpg │ ├── Launch Screen.storyboard │ ├── ViewController.h │ ├── ViewController.m │ ├── bf-Info.plist │ ├── bf-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── bfTests │ ├── bfTests-Info.plist │ ├── bfTests.m │ └── en.lproj │ └── InfoPlist.strings └── doc └── preview.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/README.md -------------------------------------------------------------------------------- /bf/bf.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /bf/bf.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /bf/bf.xcodeproj/xcshareddata/xcschemes/bf.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf.xcodeproj/xcshareddata/xcschemes/bf.xcscheme -------------------------------------------------------------------------------- /bf/bf/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/AppDelegate.h -------------------------------------------------------------------------------- /bf/bf/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/AppDelegate.m -------------------------------------------------------------------------------- /bf/bf/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /bf/bf/BetterFaceClass/UIImage+BetterFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/BetterFaceClass/UIImage+BetterFace.h -------------------------------------------------------------------------------- /bf/bf/BetterFaceClass/UIImage+BetterFace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/BetterFaceClass/UIImage+BetterFace.m -------------------------------------------------------------------------------- /bf/bf/BetterFaceClass/UIImageView+BetterFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/BetterFaceClass/UIImageView+BetterFace.h -------------------------------------------------------------------------------- /bf/bf/BetterFaceClass/UIImageView+BetterFace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/BetterFaceClass/UIImageView+BetterFace.m -------------------------------------------------------------------------------- /bf/bf/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /bf/bf/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /bf/bf/Images/landscape/l1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/Images/landscape/l1.jpg -------------------------------------------------------------------------------- /bf/bf/Images/landscape/l2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/Images/landscape/l2.jpg -------------------------------------------------------------------------------- /bf/bf/Images/landscape/l3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/Images/landscape/l3.jpg -------------------------------------------------------------------------------- /bf/bf/Images/landscape/l4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/Images/landscape/l4.jpg -------------------------------------------------------------------------------- /bf/bf/Images/multiple/m1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/Images/multiple/m1.jpg -------------------------------------------------------------------------------- /bf/bf/Images/multiple/m2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/Images/multiple/m2.jpg -------------------------------------------------------------------------------- /bf/bf/Images/up/up1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/Images/up/up1.jpg -------------------------------------------------------------------------------- /bf/bf/Images/up/up2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/Images/up/up2.jpg -------------------------------------------------------------------------------- /bf/bf/Images/up/up3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/Images/up/up3.jpg -------------------------------------------------------------------------------- /bf/bf/Images/up/up4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/Images/up/up4.jpg -------------------------------------------------------------------------------- /bf/bf/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/Launch Screen.storyboard -------------------------------------------------------------------------------- /bf/bf/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/ViewController.h -------------------------------------------------------------------------------- /bf/bf/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/ViewController.m -------------------------------------------------------------------------------- /bf/bf/bf-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/bf-Info.plist -------------------------------------------------------------------------------- /bf/bf/bf-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/bf-Prefix.pch -------------------------------------------------------------------------------- /bf/bf/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /bf/bf/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bf/main.m -------------------------------------------------------------------------------- /bf/bfTests/bfTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bfTests/bfTests-Info.plist -------------------------------------------------------------------------------- /bf/bfTests/bfTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/bf/bfTests/bfTests.m -------------------------------------------------------------------------------- /bf/bfTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /doc/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croath/UIImageView-BetterFace/HEAD/doc/preview.png --------------------------------------------------------------------------------