This library provides a category for UITextField category to supporting handwriting input.
It provides:
- An UITextField category adding touch tracking and handwriting recognition
- Handwriting view property for tracking and handwriting recognition results
- Custom controls
- Asynchronous recognition via google
- TrackingViewDelegate allows for easy customization and filtering
- Uses GCD and ARC
- Uses NSURLSession, so iOS >= 7.0
- Demo projects for iPhone and iPad
HandwritingTextField folder contains all the files neccessary to utilize the UITextField category. HandwritingTextFieldDemo folder contains the demo project.
There are two ways to use this in your project: copy the HandwritingTextField folder into your project, or use the demo project as a starting point
In the source files where you need to use the library, import the header file:
#import "UITextField+Handwriting.h"
[textField setHandwritingView:[self view]];
[textField beginHandwriting];