FLEXExplorerViewController.h 597 B

1234567891011121314151617181920212223242526
  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. @end
  14. @protocol FLEXExplorerViewControllerDelegate <NSObject>
  15. - (void)explorerViewControllerDidFinish:(FLEXExplorerViewController *)explorerViewController;
  16. @end