Skip to content

carabina/AHDrawingView

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AHDrawingView

It is a UIView subclass using that you can draw anything on view, you can clear drawing and also you can get drawing Image.

Preview

Features

  • Add Drawing In UIView.
  • Change the Drawing Line Color.
  • Change the Drawing Line Width.
  • The best is yet to come.

Manual Installation

Download the Sample and drag & drop the AHDrawingView.h and AHDrawingView.m in your project.

How To Use.

1) Add UIView From Storyboard in View Controller and Set the class to AHDrawingView or create the view programmatically.

2) Import AHDrawingView.h in your class header file.

##Customization

1) Change the drawing line color.

     ahDrawingView.lineColor = [UIColor redColor];

2) Change the drawing line width.

     ahDrawingView.lineWidth = 2.0;

##Functions

1) Get an Image of drawing.

     UIImage *img = [ahDrawingView getDrawingImage];

2) Clear drawing.

     [ahDrawingView clearDrawing];

Communication

  • If you found a bug, open an issue.
  • If you have a feature request, open an issue.
  • If you want to contribute,please submit a pull request.

License

AHDrawingView is released under the MIT license. See LICENSE for details.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 100.0%