RSDDesignableTableViewCell

@IBDesignable
open class RSDDesignableTableViewCell : UITableViewCell, RSDViewDesignable

RSDTableViewCell is used to display a table cell that conforms to the RSDViewDesignable protocol.

  • Does this cell use the table background color to set the color of the content view?

    Declaration

    Swift

    open private(set) var usesTableBackgroundColor: Bool {
      get
      }
  • The background color for the table cell.

    Declaration

    Swift

    open var backgroundColorTile: RSDColorTile? { get }
  • The background color tile for the table.

    Declaration

    Swift

    open private(set) var tableBackgroundColorTile: RSDColorTile? {
      get
      }
  • The design system for this component.

    Declaration

    Swift

    open private(set) var designSystem: RSDDesignSystem? {
      get
      }
  • Views can be used in nibs and storyboards without setting up a design system for them. This allows for setting up views to use the same design system and background color mapping as their parent view.

    Declaration

    Swift

    open func setDesignSystem(_ designSystem: RSDDesignSystem, with background: RSDColorTile)