FLEXGlobalsTableViewController.h 815 B

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