PerLevelPolygonStyle

open class PerLevelPolygonStyle : NSObject

PolygonStyle Unit 클래스.

Level별 PolygonStyle을 구성할 때 사용한다.

Initializer

  • initializer

    Declaration

    Swift

    @objc
    public init(color: UIColor, strokeWidth: UInt, strokeColor: UIColor, level: Int)

    Parameters

    color

    PolygonShape의 색깔

    storkeWidth

    PolygonShape의 외곽선 두께

    storkeColor

    PolygonShape의 외곽선 색깔

    level

    해당 단위 스타일이 표출 될 레벨

  • initializer

    Declaration

    Swift

    @objc
    public convenience init(color: UIColor, level: Int)

    Parameters

    color

    PolygonShape의 색깔

    level

    해당 단위 스타일이 표출 될 레벨

Properties

  • Shape의 색깔.

    Declaration

    Swift

    @objc
    public var color: UIColor { get }
  • Shape의 외곽선 두께. 지정하지 않을 경우 0

    Declaration

    Swift

    @objc
    public var strokeWidth: UInt { get }
  • Shape의 외곽선 색깔. 지정하지 않을 경우 투명.

    Declaration

    Swift

    @objc
    public var strokeColor: UIColor { get }
  • 해당 스타일이 표출될 레벨 .

    Declaration

    Swift

    @objc
    public var level: Int { get }