FLEXViewExplorerViewController.h 512 B

123456789101112131415161718
  1. //
  2. // FLEXViewExplorerViewController.h
  3. // Flipboard
  4. //
  5. // Created by Ryan Olson on 6/11/14.
  6. // Copyright (c) 2014 Flipboard. All rights reserved.
  7. //
  8. #import "FLEXObjectExplorerViewController.h"
  9. @interface FLEXViewExplorerViewController : FLEXObjectExplorerViewController
  10. /// Array of NSStrings that match property names on the view we're exploring.
  11. /// Subclasses can override to modify or append properties that should show up in the custom "shortcuts" section.
  12. - (NSArray *)shortcutPropertyNames;
  13. @end