iOS: Implement search / filtering

This commit is contained in:
Jonathan Schleifer 2017-10-15 13:22:32 +02:00
parent 3c8b2d1d7d
commit d916043c03
No known key found for this signature in database
GPG key ID: 28D65178B37F33E3
7 changed files with 103 additions and 47 deletions

View file

@ -24,8 +24,12 @@
#import "SiteStorage.h"
@interface MainViewController: UIViewController <UITableViewDelegate,
UITableViewDataSource>
@interface MainViewController: UIViewController <UISearchBarDelegate,
UITableViewDelegate, UITableViewDataSource>
@property (retain) OFArray<OFString *> *sites;
@property (retain) SiteStorage *siteStorage;
@property (nonatomic, retain) IBOutlet UISearchBar *searchBar;
@property (nonatomic, retain) IBOutlet UITableView *tableView;
- (void)reset;
@end