// // FLEXGlobalsTableViewController.h // Flipboard // // Created by Ryan Olson on 2014-05-03. // Copyright (c) 2014 Flipboard. All rights reserved. // #import @protocol FLEXGlobalsTableViewControllerDelegate; @interface FLEXGlobalsTableViewController : UITableViewController @property (nonatomic, weak) id 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 - (void)globalsViewControllerDidFinish:(FLEXGlobalsTableViewController *)globalsViewController; @end