I have a class inherited from UITableViewController
and this is also the root class. This tableView contains three custom UITableViewCell
s (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 UITextField
s (Which are part of UITableViewCell
);
How to do this?