In my app I have a search function that loads some JSON data from a site, works great. I originally set up using the the standard "Subtitle" type of cell that Apple provides but I've had to move to a custom cell because I've added a button to each IndexRow which didn't seem to work with Apple's template.
Now when I search, the searchDisplayController TableView no longer has any data inside of it, just blank cells. Once I hit cancel, The table view located behind it includes everything from the custom cell I made. My question is, how can I display the information from my custom cell in my searchDisplayController TableView?
Also, I would like to add the feature that it begins searching once the user starts to enter in test in the UITextField. Is there a delegate method for this?
Also, I would like the to close the searchDisplayController tableview when the search button is click and just have the results populated in my custom tableview.
Thanks, if you need any additional information let me know and I can provide it.
Now when I search, the searchDisplayController TableView no longer has any data inside of it, just blank cells. Once I hit cancel, The table view located behind it includes everything from the custom cell I made. My question is, how can I display the information from my custom cell in my searchDisplayController TableView?
Also, I would like to add the feature that it begins searching once the user starts to enter in test in the UITextField. Is there a delegate method for this?
Also, I would like the to close the searchDisplayController tableview when the search button is click and just have the results populated in my custom tableview.
Thanks, if you need any additional information let me know and I can provide it.