Вот как я передаю это предупреждение, собирая информацию о мультимедиа с помощью GCKMediaInformationBuilder :
GCKMediaInformationBuilder *builder =
[[GCKMediaInformationBuilder alloc] initWithContentURL:self.chromecastUrl];
builder.contentType = @"application/dash+xml";
builder.streamType = self.videoPlayer.isLive ? GCKMediaStreamTypeLive : GCKMediaStreamTypeBuffered;
builder.metadata = metadata;
builder.streamDuration = duration;
builder.customData = customData;
// set all other desired properties...
// then build the GCKMediaInformation with build method
GCKMediaInformation *mediaInfo = [builder build];
Надеюсь, это поможет.