Skip to content

Latest commit

 

History

History
35 lines (20 loc) · 723 Bytes

File metadata and controls

35 lines (20 loc) · 723 Bytes

YTFKeyboardCorrector

Keyboard Corrector for input fields in iOS.

Screenshots

Init

In your appDelegate add next line to didFinishLaunchingWithOptions method.

[InputManager sharedInstance].window = window;

Usage

In your code:

-(void) textFieldDidBeginEditing:(UITextField *)textField{

	[[InputManager sharedInstance] beginInput: textField];
	// your code here
}

and

(void)textFieldDidEndEditing:(UITextField *)textField{

	// your code here
	[[InputManager sharedInstance] endInput];
}