Files
YTLitePlus/Tweaks/FLEX/GlobalStateExplorers/RuntimeBrowser/FLEXKeyPathSearchController.h
2023-06-27 09:54:41 +02:00

39 lines
1.1 KiB
Objective-C

//
// 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