123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // FLEXKeyPathSearchController.h
- // FLEX
- //
- // Created by Tanner on 3/23/17.
- // Copyright © 2017 Tanner Bennett. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FLEXRuntimeBrowserToolbar.h"
- #import "FLEXMethod.h"
- @protocol FLEXKeyPathSearchControllerDelegate <UITableViewDataSource>
- @property (nonatomic, readonly) UITableView *tableView;
- @property (nonatomic, readonly) UISearchController *searchController;
- /// For loaded images which don't have an NSBundle
- - (void)didSelectImagePath:(NSString *)message shortName:(NSString *)shortName;
- - (void)didSelectBundle:(NSBundle *)bundle;
- - (void)didSelectClass:(Class)cls;
- @end
- @interface FLEXKeyPathSearchController : NSObject <UISearchBarDelegate, UITableViewDataSource, UITableViewDelegate>
- + (instancetype)delegate:(id<FLEXKeyPathSearchControllerDelegate>)delegate;
- @property (nonatomic) FLEXRuntimeBrowserToolbar *toolbar;
- /// Suggestions for the toolbar
- @property (nonatomic, readonly) NSArray<NSString *> *suggestions;
- - (void)didSelectKeyPathOption:(NSString *)text;
- - (void)didPressButton:(NSString *)text insertInto:(UISearchBar *)searchBar;
- @end
|