Tag Archives: shouldReloadTableForSearchString
UISearchDisplayController & custom UITableViewCells

Using this post, I will describe the implementation of UISearchDisplayController with customized UITableViewCells. Expected Output of this tutorial Step 1) Open your TableViewController.xib & do as follows. Step 2) Now, Place following code in your TableViewController.h file.
1 2 3 4 5 6 |
@interface MasterViewController : UITableViewController <UISearchDisplayDelegate> @property (nonatomic, strong) NSArray *arForTable; @property (nonatomic, strong) NSArray *arForSearch; @end |
Step 3) … Continue reading
UISearchDisplayController & custom UITableViewCells

Using this post, I will describe the implementation of UISearchDisplayController with customized UITableViewCells. Expected Output of this tutorial Step 1) Open your TableViewController.xib & do as follows. Step 2) Now, Place following code in your TableViewController.h file.
1 2 3 4 5 6 |
@interface MasterViewController : UITableViewController <UISearchDisplayDelegate> @property (nonatomic, strong) NSArray *arForTable; @property (nonatomic, strong) NSArray *arForSearch; @end |
Step 3) … Continue reading