// // OPSearchDelegate.h // OnePassword // // Created by Maarten Billemont on 04/01/12. // Copyright (c) 2012 Lyndir. All rights reserved. // #import #import "OPElementEntity.h" @protocol OPSearchResultsDelegate - (void)didSelectElement:(OPElementEntity *)element; @end @interface OPSearchDelegate : NSObject @property (strong, nonatomic) NSFetchedResultsController *fetchedResultsController; @property (weak, nonatomic) IBOutlet id delegate; @property (weak, nonatomic) IBOutlet UISearchDisplayController *searchDisplayController; - (void)configureCell:(UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath; @end