Programmers...
I have been trying to implement my first search function.
Notes:
I am using a SCViewController to display the result
I have a unique categoryModel but since all the code is using the default searchBar all the functionality works except it does NOT search for the name, category or location.
self.tableViewModel = categoryModel;
categoryModel.searchPropertyName = @"name;category;location.title";
self.searchBar.delegate = self;
Any ideas how to code the self.searchbar.delegate = self to include the categoryModel?
I've tried
categoryModel.searchBar = self.searchBar;
But then the functionality of the search bar no longer functions...