Dynamic searching in tableview in iOS
问题 I've a tableview and text field where I've implemented search method. Right now, when I write some value in textfield and click search button, then it search in the tableview . But, I want it to be dynamic means the moment I start typing in textfield it should start searching without clicking any button . How can I do this? 回答1: Just Connect this method on Editing Changed Event of your TextField . So, this method is called when you are changing its value. - (IBAction)txtValueChanged: