| 123456789101112131415161718192021222324252627 |
- //
- // TBRuntimeController.h
- // TBTweakViewController
- //
- // Created by Tanner on 3/23/17.
- // Copyright © 2017 Tanner Bennett. All rights reserved.
- //
- #import "TBKeyPath.h"
- @interface TBRuntimeController : NSObject
- /// @return An array of strings if the key path only evaluates
- /// to a class or bundle; otherwise, an array of FLEXMethods.
- + (NSArray *)dataForKeyPath:(TBKeyPath *)keyPath;
- + (NSDictionary *)methodsForToken:(TBToken *)token
- instance:(NSNumber *)onlyInstanceMethods
- inClasses:(NSArray<NSString*> *)classes;
- + (NSString *)shortBundleNameForClass:(NSString *)name;
- + (NSArray<NSString*> *)allBundleNames;
- @end
|