You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
815 B

  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