Ich würde Ihnen wärmstens empfehlen, Pod zu verwenden, um Youtube in Ihre App zu integrieren.
pod 'youtube-ios-player-helper', :git =>'https://github.com/youtube/youtube-ios-player-helper', :commit=>'head'
Seine offizielle Art, youtube darin zu verwenden. Probieren Sie es aus, Sie müssen nicht html und CSS selbst schreiben.
Probe Nutzungs
1) In UIView
in xib und seiner Klasse
2) Erstellen Sie IBOutlet für YTPlayerView
@property(nonatomic, strong) IBOutlet YTPlayerView *playerView;
2) In ViewController.m
NSDictionary *playerVars = @{
@"playsinline" : @1,
@"showinfo" : @0,
@"rel" : @0,
@"controls" : @1,
@"origin" : @"https://www.example.com", // this is critical
@"modestbranding" : @1
};
[self.playerView loadWithVideoId:@"Youtube Video Id" playerVars:playerVars];
zu
YTPlayerView
ändern
Für eine vollständige Dokumentation besuchen Sie bitte.
https://github.com/youtube/youtube-ios-player-helper
Für eine detaillierte Anleitung zur Verfügung gestellt von Youtube
https://developers.google.com/youtube/v3/guides/ios_youtube_helper#installation
https://github.com/youtube/youtube-ios-player-helper –
diesen Link Es ist für u Hilfe voll http: // www .appcoda.com/youtube-api-ios-tutorial/ –