Inherits from NSObject
Declared in SCPropertyAttributes.h

Overview

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.

Tasks

  •   imageView

    The image view assigned to the generated UI element.

    property
  •   imageViewArray

    The array of image views assigned to the detail elements of the generated UI element.

    property
  •   expandContentInCurrentView

    When TRUE, the generated user interface element will expand its content in the current view, instead of generating its own detail view. Default: FALSE.

    property
  •   expandedContentSectionActions

    A set of section actions for the section containing the expanded content.

    property

Properties

expandContentInCurrentView

When TRUE, the generated user interface element will expand its content in the current view, instead of generating its own detail view. Default: FALSE.

@property (nonatomic) BOOL expandContentInCurrentView

Discussion

Note: Not applicable for all property definition types.

Declared In

SCPropertyAttributes.h

expandedContentSectionActions

A set of section actions for the section containing the expanded content.

@property (nonatomic, readonly) SCSectionActions *expandedContentSectionActions

Discussion

Note: Only applicable when expandContentInCurrentView is TRUE.

Declared In

SCPropertyAttributes.h

imageView

The image view assigned to the generated UI element.

@property (nonatomic, strong) UIImageView *imageView

Declared In

SCPropertyAttributes.h

imageViewArray

The array of image views assigned to the detail elements of the generated UI element.

@property (nonatomic, strong) NSArray *imageViewArray

Discussion

The property is applicable to property definitions of type SCPropertyTypeSelection, SCPropertyTypeObject, and SCPropertyTypeArrayOfObjects.

Declared In

SCPropertyAttributes.h