|
|
@@ -7,9 +7,42 @@
|
|
|
//
|
|
|
|
|
|
#import "FLEXTableViewController.h"
|
|
|
-
|
|
|
@protocol FLEXGlobalsTableViewControllerDelegate;
|
|
|
|
|
|
+typedef NS_ENUM(NSUInteger, FLEXGlobalsSection) {
|
|
|
+ /// NSProcessInfo, Network history, system log,
|
|
|
+ /// heap, address explorer, libraries, app classes
|
|
|
+ FLEXGlobalsSectionProcessAndEvents,
|
|
|
+ /// Browse container, browse bundle, NSBundle.main,
|
|
|
+ /// NSUserDefaults.standard, UIApplication,
|
|
|
+ /// app delegate, key window, root VC, cookies
|
|
|
+ FLEXGlobalsSectionAppShortcuts,
|
|
|
+ /// UIPasteBoard.general, UIScreen, UIDevice
|
|
|
+ FLEXGlobalsSectionMisc,
|
|
|
+ FLEXGlobalsSectionCustom,
|
|
|
+ FLEXGlobalsSectionCount
|
|
|
+};
|
|
|
+
|
|
|
+typedef NS_ENUM(NSUInteger, FLEXGlobalsRow) {
|
|
|
+ FLEXGlobalsRowNetworkHistory,
|
|
|
+ FLEXGlobalsRowSystemLog,
|
|
|
+ FLEXGlobalsRowLiveObjects,
|
|
|
+ FLEXGlobalsRowAddressInspector,
|
|
|
+ FLEXGlobalsRowFileBrowser,
|
|
|
+ FLEXGlobalsRowCookies,
|
|
|
+ FLEXGlobalsRowSystemLibraries,
|
|
|
+ FLEXGlobalsRowAppClasses,
|
|
|
+ FLEXGlobalsRowAppDelegate,
|
|
|
+ FLEXGlobalsRowRootViewController,
|
|
|
+ FLEXGlobalsRowUserDefaults,
|
|
|
+ FLEXGlobalsRowMainBundle,
|
|
|
+ FLEXGlobalsRowApplication,
|
|
|
+ FLEXGlobalsRowKeyWindow,
|
|
|
+ FLEXGlobalsRowMainScreen,
|
|
|
+ FLEXGlobalsRowCurrentDevice,
|
|
|
+ FLEXGlobalsRowCount
|
|
|
+};
|
|
|
+
|
|
|
@interface FLEXGlobalsTableViewController : FLEXTableViewController
|
|
|
|
|
|
@property (nonatomic, weak) id <FLEXGlobalsTableViewControllerDelegate> delegate;
|