├── NLImageCropper.xcodeproj └── project.pbxproj ├── NLImageCropper ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── LICENCE.txt ├── NLAppDelegate.h ├── NLAppDelegate.m ├── NLCropViewLayer.h ├── NLCropViewLayer.m ├── NLImageCropper-Info.plist ├── NLImageCropper-Prefix.pch ├── NLImageCropperView.h ├── NLImageCropperView.m ├── NLViewController.h ├── NLViewController.m ├── corner.png ├── en.lproj │ ├── InfoPlist.strings │ ├── MainStoryboard_iPad.storyboard │ └── MainStoryboard_iPhone.storyboard ├── main.m ├── sample.jpg └── sceenshot.png └── README.md /NLImageCropper.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NLImageCropper/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/Default-568h@2x.png -------------------------------------------------------------------------------- /NLImageCropper/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/Default.png -------------------------------------------------------------------------------- /NLImageCropper/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/Default@2x.png -------------------------------------------------------------------------------- /NLImageCropper/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/LICENCE.txt -------------------------------------------------------------------------------- /NLImageCropper/NLAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/NLAppDelegate.h -------------------------------------------------------------------------------- /NLImageCropper/NLAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/NLAppDelegate.m -------------------------------------------------------------------------------- /NLImageCropper/NLCropViewLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/NLCropViewLayer.h -------------------------------------------------------------------------------- /NLImageCropper/NLCropViewLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/NLCropViewLayer.m -------------------------------------------------------------------------------- /NLImageCropper/NLImageCropper-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/NLImageCropper-Info.plist -------------------------------------------------------------------------------- /NLImageCropper/NLImageCropper-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/NLImageCropper-Prefix.pch -------------------------------------------------------------------------------- /NLImageCropper/NLImageCropperView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/NLImageCropperView.h -------------------------------------------------------------------------------- /NLImageCropper/NLImageCropperView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/NLImageCropperView.m -------------------------------------------------------------------------------- /NLImageCropper/NLViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/NLViewController.h -------------------------------------------------------------------------------- /NLImageCropper/NLViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/NLViewController.m -------------------------------------------------------------------------------- /NLImageCropper/corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/corner.png -------------------------------------------------------------------------------- /NLImageCropper/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /NLImageCropper/en.lproj/MainStoryboard_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/en.lproj/MainStoryboard_iPad.storyboard -------------------------------------------------------------------------------- /NLImageCropper/en.lproj/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/en.lproj/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /NLImageCropper/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/main.m -------------------------------------------------------------------------------- /NLImageCropper/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/sample.jpg -------------------------------------------------------------------------------- /NLImageCropper/sceenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/NLImageCropper/sceenshot.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalmughal/NLImageCropper/HEAD/README.md --------------------------------------------------------------------------------