FLEXExplorerViewController.h 629 B

123456789101112131415161718192021222324252627
  1. //
  2. // FLEXExplorerViewController.h
  3. // Flipboard
  4. //
  5. // Created by Ryan Olson on 4/4/14.
  6. // Copyright (c) 2014 Flipboard. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol FLEXExplorerViewControllerDelegate;
  10. @interface FLEXExplorerViewController : UIViewController
  11. @property (nonatomic, weak) id <FLEXExplorerViewControllerDelegate> delegate;
  12. - (BOOL)shouldReceiveTouchAtWindowPoint:(CGPoint)pointInWindowCoordinates;
  13. - (BOOL)wantsWindowToBecomeKey;
  14. @end
  15. @protocol FLEXExplorerViewControllerDelegate <NSObject>
  16. - (void)explorerViewControllerDidFinish:(FLEXExplorerViewController *)explorerViewController;
  17. @end