iOS web browser with a focus on security and privacy
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

RuleEditorController: set delegate properly

titleForDeleteConfirmationButtonForRowAtIndexPath was not being
called to change swipe-to-delete buttons to Enable/Disable

+3
+3
Endless/RuleEditorController.m
··· 34 34 searchDisplayController = [[UISearchDisplayController alloc] initWithSearchBar:self.searchBar contentsController:self]; 35 35 searchDisplayController.delegate = self; 36 36 searchDisplayController.searchResultsDataSource = self; 37 + searchDisplayController.searchResultsTableView.delegate = self; 38 + 39 + self.tableView.delegate = self; 37 40 38 41 [[self tableView] setTableHeaderView:self.searchBar]; 39 42 }