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

//
// 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