SCPropertyAttributes

@interface SCPropertyAttributes : NSObject {
  UIImageView *imageView;
  NSArray *imageViewArray;
  BOOL expandContentInCurrentView;
  SCSectionActions *_expandedContentSectionActions;
}

This class is an abstract base class that represents a set of SCPropertyDefinition attributes.

Each subclass of ‘SCPropertyAttributes’ is used to extend the definition of an SCPropertyDefinition instance according to its respective type. Set the attributes property of an SCPropertyDefinition instance to a subclass to be able to further customize the user interface element that will be generated for this property definition.

Note

You should never make instances of this class. Use subclasses instead.