It seems that you have not set the delegate of your text fields to your receiver.
ITLoad.delegate = self; FacilitiesLoad.delegate = self;
EDIT: You get warnings because your view controller (formally) does not conform to the UITextFieldDelegate protocol. Declare it as follows:
@interface MyViewController: UIViewController <UITextFieldDelegate> { }
and etc.
user529758
source share