VideoTrimSelectionView

@available(iOS 9.0, *)
@objcMembers
@objc(PESDKVideoTrimSelectionView)
open class VideoTrimSelectionView : UIView

The view that is used to change the start or end time of a video by dragging.

Properties

  • The delegate object for this view.

    Declaration

    Swift

    public weak var delegate: VideoTrimSelectionViewDelegate?
  • The asset to load the keyframes for.

    Declaration

    Swift

    public var asset: AVAsset? { get set }
  • The start time that was selected.

    Declaration

    Swift

    public var startTime: CMTime? { get set }
  • The end time that was selected.

    Declaration

    Swift

    public var endTime: CMTime? { get set }
  • The width of the handle on both sides.

    Declaration

    Swift

    public var handleWidth: CGFloat
  • The color to use when the control is inactive.

    Declaration

    Swift

    public var inactiveColor: UIColor { get set }
  • The handle on the left.

    Declaration

    Swift

    public let leftHandle: UIView
  • The handle on the right.

    Declaration

    Swift

    public let rightHandle: UIView