I have a class that extends UITextfield. I also have the same class set to be it\'s own delegate so when the text field is selected I can change the background color. Once I
Subscribe to UITextFieldTextDidBeginEditingNotification or UITextFieldTextDidEndEditingNotificationNSNotifications. In callbacks check if notification object is self. Then perform some action on it.