Skip to content

matthiasplappert/MPSearchableTableViewController

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MPSearchableTableViewController

MPSearchableTableViewController is a drop-in class that makes creating searchable table views super easy and gives them the Apple-like look with zero effort. MPSearchableTableViewController is licensed under the MIT license and works with iOS 3 or later.

Here are three screenshots that illustrate how your searchable table view will look like.

Example

Installation

Simply clone the git directory and add MPSearchableTableViewController.h, MPSearchableTableViewController.m, MPTableViewSearchBarBackgroundView.h and MPTableViewSearchBarBackgroundView.m to your project.

MPSearchableTableViewController uses ARC, so you need to enable that.

Usage

Create a new class that inherits from MPSearchableTableViewController. Implement - (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText, which is defined in the UISearchBarDelegate protocol. That method gets called every time the search text changes. When this method gets called, you typically filter your data and refresh the search display table view by calling [self.searchDisplayController.searchResultsTableView reloadData];. Everything else is set up by MPSearchableTableViewController for you.

MPSearchableTableViewController also comes with a working example located in the Example directory. Make sure to give it a try.

MIT License

Copyright (c) 2012 Matthias Plappert matthiasplappert@me.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

HE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A drop-in class to make creating a searchable table view a piece of cake.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published