chrismiles / EZForm

iOS form handling and validation library.
MIT License
284 stars 64 forks source link

EZForm delegate not calling #81

Open kuldeep13990 opened 8 years ago

kuldeep13990 commented 8 years ago

When i input the character in textfield

this delegate method is not called.

Thnks

bok- commented 8 years ago

Hi @kuldeep13990,

Did you wire up the textfield before using it?

let textField = UITextField();
let ezFormTextField = EZFormTextField();
ezFormTextField.useTextField(textField);

Rob