FLEXObjectListViewController.h 605 B

1234567891011121314151617181920
  1. //
  2. // FLEXObjectListViewController.h
  3. // Flipboard
  4. //
  5. // Created by Ryan Olson on 5/28/14.
  6. // Copyright (c) 2020 FLEX Team. All rights reserved.
  7. //
  8. #import "FLEXFilteringTableViewController.h"
  9. @interface FLEXObjectListViewController : FLEXFilteringTableViewController
  10. /// This will either return a list of the instances, or take you straight
  11. /// to the explorer itself if there is only one instance.
  12. + (UIViewController *)instancesOfClassWithName:(NSString *)className;
  13. + (instancetype)subclassesOfClassWithName:(NSString *)className;
  14. + (instancetype)objectsWithReferencesToObject:(id)object;
  15. @end