├── .gitignore ├── AHDrawingViewDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── AHDrawingViewDemo ├── AHDrawingView.h ├── AHDrawingView.m ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── DrawingImageViewController.h ├── DrawingImageViewController.m ├── Info.plist ├── ViewController.h ├── ViewController.m ├── background.png ├── btnBackground.png ├── ezgif.com-video-to-gif.gif └── main.m ├── LICENSE ├── README.md └── Source ├── AHDrawingView.h └── AHDrawingView.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/.gitignore -------------------------------------------------------------------------------- /AHDrawingViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/AHDrawingViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AHDrawingViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/AHDrawingViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AHDrawingViewDemo/AHDrawingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/AHDrawingViewDemo/AHDrawingView.h -------------------------------------------------------------------------------- /AHDrawingViewDemo/AHDrawingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/AHDrawingViewDemo/AHDrawingView.m -------------------------------------------------------------------------------- /AHDrawingViewDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/AHDrawingViewDemo/AppDelegate.h -------------------------------------------------------------------------------- /AHDrawingViewDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/AHDrawingViewDemo/AppDelegate.m -------------------------------------------------------------------------------- /AHDrawingViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/AHDrawingViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AHDrawingViewDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/AHDrawingViewDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AHDrawingViewDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/AHDrawingViewDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AHDrawingViewDemo/DrawingImageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/AHDrawingViewDemo/DrawingImageViewController.h -------------------------------------------------------------------------------- /AHDrawingViewDemo/DrawingImageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/AHDrawingViewDemo/DrawingImageViewController.m -------------------------------------------------------------------------------- /AHDrawingViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/AHDrawingViewDemo/Info.plist -------------------------------------------------------------------------------- /AHDrawingViewDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/AHDrawingViewDemo/ViewController.h -------------------------------------------------------------------------------- /AHDrawingViewDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/AHDrawingViewDemo/ViewController.m -------------------------------------------------------------------------------- /AHDrawingViewDemo/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/AHDrawingViewDemo/background.png -------------------------------------------------------------------------------- /AHDrawingViewDemo/btnBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/AHDrawingViewDemo/btnBackground.png -------------------------------------------------------------------------------- /AHDrawingViewDemo/ezgif.com-video-to-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/AHDrawingViewDemo/ezgif.com-video-to-gif.gif -------------------------------------------------------------------------------- /AHDrawingViewDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/AHDrawingViewDemo/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/README.md -------------------------------------------------------------------------------- /Source/AHDrawingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/Source/AHDrawingView.h -------------------------------------------------------------------------------- /Source/AHDrawingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayHastekar/AHDrawingView/HEAD/Source/AHDrawingView.m --------------------------------------------------------------------------------