STSSDKStreamingTimelineView

@interface STSSDKStreamingTimelineView : UIControl

A STSSDKStreamingTimelineView object includes subviews that shows the playback time information.

  • The slider that shows the playback progress.

    Declaration

    Objective-C

    @property (nonatomic, readonly) UISlider *_Nonnull playbackTimeSlider;

    Swift

    var playbackTimeSlider: UnsafeMutablePointer<Int32>! { get }
  • The label shows the playback duration.

    Declaration

    Objective-C

    @property (nonatomic, readonly) UILabel *_Nonnull durationLabel;

    Swift

    var durationLabel: UnsafeMutablePointer<Int32>! { get }
  • The label shows the playback elapsed time.

    Declaration

    Objective-C

    @property (nonatomic, readonly) UILabel *_Nonnull playbackTimeLabel;

    Swift

    var playbackTimeLabel: UnsafeMutablePointer<Int32>! { get }
  • The layout constraints of the subviews embedded in the currentView. Change this property to customize the layout of the subviews.

    Declaration

    Objective-C

    @property (nonatomic, assign, unsafe_unretained, readwrite)
        NSArray<NSLayoutConstraint *> *_Nonnull subviewLayoutConstraints;