Player controls can be specified in the dictionary described below and can have a value of 0,1,2 to check this link for the control functions
https://developers.google.com/youtube/player_parameters#controls
NSDictionary *playerVars = @{
@"controls" : @0,
@"playsinline" : @1,
@"autohide" : @1,
@"showinfo" : @0,
@"modestbranding" : @1
};
[self.playerView loadWithVideoId:videoId playerVars:playerVars];
Rakii source
share