LiveVideos

public class LiveVideos: NSObject

Wrapper class to manage Live Audio instances

  • Add a new live video

    Declaration

    Swift

    public func add(_ name:String) -> LiveVideo

    Parameters

    name

    live name

    Return Value

    the new live video instance

  • Add a new live video

    Declaration

    Swift

    public func add(_ name: String, chapter1: String) -> LiveVideo

    Parameters

    name

    name

    chapter1

    chapter1 label

    Return Value

    a new live video instance

  • Add a new live video

    Declaration

    Swift

    public func add(_ name: String, chapter1: String, chapter2: String) -> LiveVideo

    Parameters

    name

    name

    chapter1

    chapter1 label

    chapter2

    chapter2 label

    Return Value

    the new live video instance

  • Add a new live video

    Declaration

    Swift

    public func add(_ name: String, chapter1: String, chapter2: String, chapter3: String) -> LiveVideo

    Parameters

    name

    name

    chapter1

    chapter1 label

    chapter2

    chapter2 label

    chapter3

    chapter3 label

    Return Value

    a new live video instance

  • Remove a live video - parameter video: video name

    Declaration

    Swift

    public func remove(_ name: String)

    Parameters

    video

    video name

  • Remove all live videos

    Declaration

    Swift

    public func removeAll()