I have a class inherited from UITableViewController and this is also the root class. This tableView contains three custom UITableViewCells (loaded from NIB file and not subclassed) and each UITableViewCell has one UITextField. Now when I implement delegate method
- (BOOL)textField:(UITextField *)textField
shouldChangeCharactersInRange:(NSRange)range
replacementString:(NSString *)string
I don't recieve any event. This function never gets fired, I tried implementating other delegate methods too but none of them fires. How to fire these delegate methods?
I also want to override canPerformAction:sender: function for these UITextFields (Which are part of UITableViewCell);
How to do this?