├── .gitignore ├── .travis.yml ├── Example ├── NXDrawKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── NXDrawKit-Example.xcscheme ├── NXDrawKit.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── NXDrawKit │ ├── .DS_Store │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── .DS_Store │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.swift │ └── frame.png ├── Podfile ├── Podfile.lock └── Pods │ ├── .DS_Store │ ├── Local Podspecs │ └── NXDrawKit.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── RSKImageCropper │ ├── LICENSE │ ├── README.md │ └── RSKImageCropper │ │ ├── CGGeometry+RSKImageCropper.h │ │ ├── CGGeometry+RSKImageCropper.m │ │ ├── RSKImageCropViewController+Protected.h │ │ ├── RSKImageCropViewController.h │ │ ├── RSKImageCropViewController.m │ │ ├── RSKImageCropper.h │ │ ├── RSKImageCropper.modulemap │ │ ├── RSKImageCropperStrings.bundle │ │ ├── ar.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── bg.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── bs.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── ca.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── cs.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── da.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── de.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── el.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── en.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── es.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── et.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── fi.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── fil.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── fr.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── he.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── hi.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── hr.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── hu.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── id.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── it.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── ja.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── ko.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── lt.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── lv.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── mk.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── ms.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── nb.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── nl.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── pl.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── pt.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── pt_BR.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── pt_PT.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── ro.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── ru.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── sk.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── sl.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── sr.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── sv.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── th.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── tr.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── uk.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── vi.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── zh-Hans.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── zh-Hant.lproj │ │ │ └── RSKImageCropper.strings │ │ └── zh.lproj │ │ │ └── RSKImageCropper.strings │ │ ├── RSKImageScrollView.h │ │ ├── RSKImageScrollView.m │ │ ├── RSKInternalUtility.h │ │ ├── RSKInternalUtility.m │ │ ├── RSKTouchView.h │ │ ├── RSKTouchView.m │ │ ├── UIApplication+RSKImageCropper.h │ │ ├── UIApplication+RSKImageCropper.m │ │ ├── UIImage+RSKImageCropper.h │ │ └── UIImage+RSKImageCropper.m │ └── Target Support Files │ ├── NXDrawKit │ ├── Info.plist │ ├── NXDrawKit-dummy.m │ ├── NXDrawKit-prefix.pch │ ├── NXDrawKit-umbrella.h │ ├── NXDrawKit.modulemap │ ├── NXDrawKit.xcconfig │ └── ResourceBundle-NXDrawKit-Info.plist │ ├── Pods-NXDrawKit_Example │ ├── Info.plist │ ├── Pods-NXDrawKit_Example-acknowledgements.markdown │ ├── Pods-NXDrawKit_Example-acknowledgements.plist │ ├── Pods-NXDrawKit_Example-dummy.m │ ├── Pods-NXDrawKit_Example-frameworks.sh │ ├── Pods-NXDrawKit_Example-resources.sh │ ├── Pods-NXDrawKit_Example-umbrella.h │ ├── Pods-NXDrawKit_Example.debug.xcconfig │ ├── Pods-NXDrawKit_Example.modulemap │ └── Pods-NXDrawKit_Example.release.xcconfig │ └── RSKImageCropper │ ├── Info.plist │ ├── RSKImageCropper-dummy.m │ ├── RSKImageCropper-prefix.pch │ ├── RSKImageCropper.modulemap │ └── RSKImageCropper.xcconfig ├── LICENSE ├── NXDrawKit.podspec ├── NXDrawKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── NXDrawKit.xcscheme ├── NXDrawKit ├── Assets │ ├── icon_camera.png │ ├── icon_camera@2x.png │ ├── icon_camera@3x.png │ ├── icon_eraser.png │ ├── icon_eraser@2x.png │ ├── icon_eraser@3x.png │ ├── icon_redo.png │ ├── icon_redo@2x.png │ ├── icon_redo@3x.png │ ├── icon_undo.png │ ├── icon_undo@2x.png │ └── icon_undo@3x.png ├── Classes │ ├── Brush.swift │ ├── Canvas.swift │ ├── CircleButton.swift │ ├── Drawing.swift │ ├── Palette.swift │ ├── Session.swift │ ├── ToolBar.swift │ ├── UIImageExtractExtension.swift │ └── UIViewFrameExtension.swift └── Info.plist ├── Package.swift ├── README.md ├── _Pods.xcodeproj └── images ├── logo.jpg └── screenShot.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/NXDrawKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/NXDrawKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/NXDrawKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/NXDrawKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/NXDrawKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/NXDrawKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/NXDrawKit.xcodeproj/xcshareddata/xcschemes/NXDrawKit-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/NXDrawKit.xcodeproj/xcshareddata/xcschemes/NXDrawKit-Example.xcscheme -------------------------------------------------------------------------------- /Example/NXDrawKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/NXDrawKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/NXDrawKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/NXDrawKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/NXDrawKit/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/NXDrawKit/.DS_Store -------------------------------------------------------------------------------- /Example/NXDrawKit/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/NXDrawKit/AppDelegate.swift -------------------------------------------------------------------------------- /Example/NXDrawKit/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/NXDrawKit/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/NXDrawKit/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/NXDrawKit/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/NXDrawKit/Images.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/NXDrawKit/Images.xcassets/.DS_Store -------------------------------------------------------------------------------- /Example/NXDrawKit/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/NXDrawKit/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/NXDrawKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/NXDrawKit/Info.plist -------------------------------------------------------------------------------- /Example/NXDrawKit/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/NXDrawKit/ViewController.swift -------------------------------------------------------------------------------- /Example/NXDrawKit/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/NXDrawKit/frame.png -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/.DS_Store -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/NXDrawKit.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Local Podspecs/NXDrawKit.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/LICENSE -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/README.md -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/CGGeometry+RSKImageCropper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/CGGeometry+RSKImageCropper.h -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/CGGeometry+RSKImageCropper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/CGGeometry+RSKImageCropper.m -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropViewController+Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropViewController+Protected.h -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropViewController.h -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropViewController.m -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropper.h -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropper.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropper.modulemap -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ar.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ar.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/bg.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/bg.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/bs.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/bs.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ca.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ca.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/cs.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/cs.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/da.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/da.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/de.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/de.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/el.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/el.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/en.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/en.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/es.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/es.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/et.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/et.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/fi.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/fi.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/fil.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/fil.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/fr.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/fr.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/he.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/he.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/hi.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/hi.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/hr.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/hr.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/hu.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/hu.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/id.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/id.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/it.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/it.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ja.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ja.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ko.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ko.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/lt.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/lt.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/lv.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/lv.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/mk.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/mk.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ms.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ms.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/nb.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/nb.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/nl.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/nl.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/pl.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/pl.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/pt.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/pt.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/pt_BR.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/pt_BR.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/pt_PT.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/pt_PT.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ro.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ro.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ru.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/ru.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/sk.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/sk.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/sl.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/sl.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/sr.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/sr.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/sv.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/sv.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/th.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/th.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/tr.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/tr.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/uk.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/uk.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/vi.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/vi.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/zh-Hans.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/zh-Hans.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/zh-Hant.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/zh-Hant.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/zh.lproj/RSKImageCropper.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageCropperStrings.bundle/zh.lproj/RSKImageCropper.strings -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageScrollView.h -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKImageScrollView.m -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKInternalUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKInternalUtility.h -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKInternalUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKInternalUtility.m -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKTouchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKTouchView.h -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/RSKTouchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/RSKTouchView.m -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/UIApplication+RSKImageCropper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/UIApplication+RSKImageCropper.h -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/UIApplication+RSKImageCropper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/UIApplication+RSKImageCropper.m -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/UIImage+RSKImageCropper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/UIImage+RSKImageCropper.h -------------------------------------------------------------------------------- /Example/Pods/RSKImageCropper/RSKImageCropper/UIImage+RSKImageCropper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/RSKImageCropper/RSKImageCropper/UIImage+RSKImageCropper.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/NXDrawKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/NXDrawKit/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/NXDrawKit/NXDrawKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/NXDrawKit/NXDrawKit-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/NXDrawKit/NXDrawKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/NXDrawKit/NXDrawKit-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/NXDrawKit/NXDrawKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/NXDrawKit/NXDrawKit-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/NXDrawKit/NXDrawKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/NXDrawKit/NXDrawKit.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/NXDrawKit/NXDrawKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/NXDrawKit/NXDrawKit.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/NXDrawKit/ResourceBundle-NXDrawKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/NXDrawKit/ResourceBundle-NXDrawKit-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Pods-NXDrawKit_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Pods-NXDrawKit_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Pods-NXDrawKit_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Pods-NXDrawKit_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Pods-NXDrawKit_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Pods-NXDrawKit_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Pods-NXDrawKit_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Pods-NXDrawKit_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Pods-NXDrawKit_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Pods-NXDrawKit_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Pods-NXDrawKit_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Pods-NXDrawKit_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Pods-NXDrawKit_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Pods-NXDrawKit_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Pods-NXDrawKit_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Pods-NXDrawKit_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Pods-NXDrawKit_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/Pods-NXDrawKit_Example/Pods-NXDrawKit_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RSKImageCropper/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/RSKImageCropper/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RSKImageCropper/RSKImageCropper-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/RSKImageCropper/RSKImageCropper-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RSKImageCropper/RSKImageCropper-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/RSKImageCropper/RSKImageCropper-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RSKImageCropper/RSKImageCropper.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/RSKImageCropper/RSKImageCropper.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RSKImageCropper/RSKImageCropper.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Example/Pods/Target Support Files/RSKImageCropper/RSKImageCropper.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/LICENSE -------------------------------------------------------------------------------- /NXDrawKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit.podspec -------------------------------------------------------------------------------- /NXDrawKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NXDrawKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NXDrawKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /NXDrawKit.xcodeproj/xcshareddata/xcschemes/NXDrawKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit.xcodeproj/xcshareddata/xcschemes/NXDrawKit.xcscheme -------------------------------------------------------------------------------- /NXDrawKit/Assets/icon_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Assets/icon_camera.png -------------------------------------------------------------------------------- /NXDrawKit/Assets/icon_camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Assets/icon_camera@2x.png -------------------------------------------------------------------------------- /NXDrawKit/Assets/icon_camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Assets/icon_camera@3x.png -------------------------------------------------------------------------------- /NXDrawKit/Assets/icon_eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Assets/icon_eraser.png -------------------------------------------------------------------------------- /NXDrawKit/Assets/icon_eraser@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Assets/icon_eraser@2x.png -------------------------------------------------------------------------------- /NXDrawKit/Assets/icon_eraser@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Assets/icon_eraser@3x.png -------------------------------------------------------------------------------- /NXDrawKit/Assets/icon_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Assets/icon_redo.png -------------------------------------------------------------------------------- /NXDrawKit/Assets/icon_redo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Assets/icon_redo@2x.png -------------------------------------------------------------------------------- /NXDrawKit/Assets/icon_redo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Assets/icon_redo@3x.png -------------------------------------------------------------------------------- /NXDrawKit/Assets/icon_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Assets/icon_undo.png -------------------------------------------------------------------------------- /NXDrawKit/Assets/icon_undo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Assets/icon_undo@2x.png -------------------------------------------------------------------------------- /NXDrawKit/Assets/icon_undo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Assets/icon_undo@3x.png -------------------------------------------------------------------------------- /NXDrawKit/Classes/Brush.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Classes/Brush.swift -------------------------------------------------------------------------------- /NXDrawKit/Classes/Canvas.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Classes/Canvas.swift -------------------------------------------------------------------------------- /NXDrawKit/Classes/CircleButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Classes/CircleButton.swift -------------------------------------------------------------------------------- /NXDrawKit/Classes/Drawing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Classes/Drawing.swift -------------------------------------------------------------------------------- /NXDrawKit/Classes/Palette.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Classes/Palette.swift -------------------------------------------------------------------------------- /NXDrawKit/Classes/Session.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Classes/Session.swift -------------------------------------------------------------------------------- /NXDrawKit/Classes/ToolBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Classes/ToolBar.swift -------------------------------------------------------------------------------- /NXDrawKit/Classes/UIImageExtractExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Classes/UIImageExtractExtension.swift -------------------------------------------------------------------------------- /NXDrawKit/Classes/UIViewFrameExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Classes/UIViewFrameExtension.swift -------------------------------------------------------------------------------- /NXDrawKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/NXDrawKit/Info.plist -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/images/logo.jpg -------------------------------------------------------------------------------- /images/screenShot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nicejinux/NXDrawKit/HEAD/images/screenShot.gif --------------------------------------------------------------------------------