├── .gitignore ├── Classes ├── HIPAppDelegate.h ├── HIPAppDelegate.m ├── HIPRootViewController.h └── HIPRootViewController.m ├── Dependencies └── HIPImageCropperView │ ├── HIPImageCropperView.h │ └── HIPImageCropperView.m ├── HIPImageCropper.podspec ├── HIPImageCropper.xcodeproj └── project.pbxproj ├── LICENSE ├── README.md ├── Resources ├── Icons │ ├── Default-568h@2x.png │ ├── Default.png │ └── Default@2x.png ├── Images │ ├── landscape-wide.jpg │ ├── landscape.jpg │ └── portrait.jpg └── Localization │ └── en.lproj │ └── InfoPlist.strings └── Sources ├── HIPImageCropper-Info.plist ├── HIPImageCropper-Prefix.pch └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/HIPAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/Classes/HIPAppDelegate.h -------------------------------------------------------------------------------- /Classes/HIPAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/Classes/HIPAppDelegate.m -------------------------------------------------------------------------------- /Classes/HIPRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/Classes/HIPRootViewController.h -------------------------------------------------------------------------------- /Classes/HIPRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/Classes/HIPRootViewController.m -------------------------------------------------------------------------------- /Dependencies/HIPImageCropperView/HIPImageCropperView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/Dependencies/HIPImageCropperView/HIPImageCropperView.h -------------------------------------------------------------------------------- /Dependencies/HIPImageCropperView/HIPImageCropperView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/Dependencies/HIPImageCropperView/HIPImageCropperView.m -------------------------------------------------------------------------------- /HIPImageCropper.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/HIPImageCropper.podspec -------------------------------------------------------------------------------- /HIPImageCropper.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/HIPImageCropper.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icons/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/Resources/Icons/Default-568h@2x.png -------------------------------------------------------------------------------- /Resources/Icons/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/Resources/Icons/Default.png -------------------------------------------------------------------------------- /Resources/Icons/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/Resources/Icons/Default@2x.png -------------------------------------------------------------------------------- /Resources/Images/landscape-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/Resources/Images/landscape-wide.jpg -------------------------------------------------------------------------------- /Resources/Images/landscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/Resources/Images/landscape.jpg -------------------------------------------------------------------------------- /Resources/Images/portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/Resources/Images/portrait.jpg -------------------------------------------------------------------------------- /Resources/Localization/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Sources/HIPImageCropper-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/Sources/HIPImageCropper-Info.plist -------------------------------------------------------------------------------- /Sources/HIPImageCropper-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/Sources/HIPImageCropper-Prefix.pch -------------------------------------------------------------------------------- /Sources/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hipo/HIPImageCropper/HEAD/Sources/main.m --------------------------------------------------------------------------------