Is there a specific way to load only certain tagged items from a plist file to a UITableView? Something like: load this item into a cell if the property “Tag” contains “transportation” in it, keeping in mind that the property “Tag” will will be string with “transportation, car, train, bus, etc.”
Because of what I’m working with (HTML data loading in UIWebViews), I haven’t found a method that allows me to use true search (without paying), so I was planning on implementing a tableview with all “searchable” keywords which will then load only certain items into the tableview, form which the user can get more information in the form of webview.
I figured out how to use NSPredicates and loaded the table.
This will update every time you come back to the favorites screen.