ShinyView

open class ShinyView : UIView

Undocumented

  • Undocumented

    Declaration

    Swift

    open lazy var sceneView: SceneView { get set }
  • The array of UIColor objects defining the color of each gradient stop.

    Declaration

    Swift

    open var colors: [UIColor]
  • The array of CGFloat objects defining the location of each gradient stop as a value in the range [0,1]. The values must be monotonically increasing. If a nil array is given, the stops are assumed to spread uniformly across the [0,1] range. Defaults to nil.

    Declaration

    Swift

    open var locations: [CGFloat]?
  • The scale factor of the gradient. Defaults to 2.

    Declaration

    Swift

    open var scale: CGFloat
  • The axis of the gradient. Defaults to vertical.

    Declaration

    Swift

    open var axis: Axis
  • Starts listening to motion updates.

    Declaration

    Swift

    open func startUpdates()
  • Stops listening to motion updates.

    Declaration

    Swift

    open func stopUpdates()