AI-generated Key Takeaways
-
The GCKUIMediaTrackSelectionViewControllerDelegate is a protocol related to device connection view controllers.
-
The protocol includes an instance method called
didSelectMediaTracks:which is triggered when a user selects media tracks. -
The
didSelectMediaTracks:method provides an array of selected media track IDs, which can include one audio and one text track ID.
Overview
The GCKUIDeviceConnectionViewController delegate protocol.
- Since
- 3.0
Inherits <UITabBarControllerNSObject>.
Instance Method Summary | |
| (void) | - didSelectMediaTracks: |
| Called when the user has made a media track selection. More... | |
Method Detail
| - (void) didSelectMediaTracks: | (NSArray< NSNumber * > *) | mediaTrackIDs |
Called when the user has made a media track selection.
The list may contain at most one audio track ID and one text track ID. The absence of an audio track ID indicates that the default audio track is selected, and the absence of a text track ID indicates that no text track is selected.