我正在尝试在iOS中实现视频的jw播放器。我该怎么做呢?我正在使用MPMediaplayer它正在为我工作。但我需要在ios上集成jwplayer for video。我怎么能做这件事。有任何第三方框架。 iOS有什么框架吗?或需要整合任何第三方框架?请告诉我..
mp = [[MPMoviePlayerController alloc]initWithContentURL:url];
mp.view.frame = self.view.bounds; //Set the size
self.view.backgroundColor=[UIColor clearColor];
mp.controlStyle = MPMovieControlStyleDefault;
mp.view.userInteractionEnabled = YES;
mp.movieSourceType = MPMovieSourceTypeStreaming;
[self.view addSubview:mp.view]; //Show the view
mp.scalingMode = MPMovieScalingModeFill;
[mp setFullscreen:YES animated:YES];
答案 0 :(得分:0)
jwplayer没有ios的sdk,仅适用于android。你不能在ios中使用它。