| 12345678910111213141516171819202122232425262728 |
- //
- // FLEXGlobalsTableViewController.h
- // Flipboard
- //
- // Created by Ryan Olson on 2014-05-03.
- // Copyright (c) 2014 Flipboard. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol FLEXGlobalsTableViewControllerDelegate;
- @interface FLEXGlobalsTableViewController : UITableViewController
- @property (nonatomic, weak) id <FLEXGlobalsTableViewControllerDelegate> delegate;
- /// We pretend that one of the app's windows is still the key window, even though the explorer window may have become key.
- /// We want to display debug state about the application, not about this tool.
- + (void)setApplicationWindow:(UIWindow *)applicationWindow;
- @end
- @protocol FLEXGlobalsTableViewControllerDelegate <NSObject>
- - (void)globalsViewControllerDidFinish:(FLEXGlobalsTableViewController *)globalsViewController;
- @end
|