// // FLEXExplorerViewController.h // Flipboard // // Created by Ryan Olson on 4/4/14. // Copyright (c) 2014 Flipboard. All rights reserved. // #import @protocol FLEXExplorerViewControllerDelegate; @interface FLEXExplorerViewController : UIViewController @property (nonatomic, weak) id delegate; - (BOOL)shouldReceiveTouchAtWindowPoint:(CGPoint)pointInWindowCoordinates; - (BOOL)wantsWindowToBecomeKey; @end @protocol FLEXExplorerViewControllerDelegate - (void)explorerViewControllerDidFinish:(FLEXExplorerViewController *)explorerViewController; @end