FLEXObjectInfoSection.h 628 B

1234567891011121314151617181920
  1. //
  2. // FLEXObjectInfoSection.h
  3. // FLEX
  4. //
  5. // Created by Tanner Bennett on 8/28/19.
  6. // Copyright © 2020 FLEX Team. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. /// \c FLEXTableViewSection itself doesn't know about the object being explored.
  10. /// Subclasses might need this info to provide useful information about the object. Instead
  11. /// of adding an abstract class to the class hierarchy, subclasses can conform to this protocol
  12. /// to indicate that the only info they need to be initialized is the object being explored.
  13. @protocol FLEXObjectInfoSection <NSObject>
  14. + (instancetype)forObject:(id)object;
  15. @end