I am looking for a class that will allow the user to draw?(the main purpose is to get their signature).
I checked Cocoa Controls but couldn't find such a class. Just want to now if there's any before I start writing it myself. Thanks
I am looking for a class that will allow the user to draw?(the main purpose is to get their signature).
I checked Cocoa Controls but couldn't find such a class. Just want to now if there's any before I start writing it myself. Thanks
Look at this tutorial: http://www.ifans.com/forums/showthread.php?t=132024
To get a JPG or PNG file, you can use the functions
UIImageJPEGRepresentation
orUIImagePNGRepresentation
. They take aUIImage
as input. And to get aUIImage
from aUIView
, you can use something like this.