如何在iOS应用中播放来自网络的视频?

时间:2013-02-18 06:46:14

标签: objective-c ios5

我想在我的iOS应用中播放视频。该视频将从网上下载。

1 个答案:

答案 0 :(得分:1)

这可能对您有所帮助

#import <UIKit/UIKit.h>
#import <MediaPlayer/MediaPlayer.h>

@interface ViewController : UIViewController

@property (nonatomic,strong)MPMoviePlayerController *moviePlayer;

@end



- (IBAction)playButtonEvent:(id)sender
{
      NSURL *url=[[NSURL alloc]initWithString:@"http://www.jplayer.org/video/m4v/Big_Bunny_Trailer.M4v"];
          _moviePlayer=[[MPMoviePlayerController alloc]initWithContentURL:url];
          [_moviePlayer.view setFrame:CGRectMake(20, 100, 380, 150)];
         [self.view addSubview:_moviePlayer.view];

      _moviePlayer.fullscreen=YES;
      _moviePlayer.allowsAirPlay=YES;
      _moviePlayer.shouldAutoplay=YES;
      _moviePlayer.controlStyle=MPMovieControlStyleEmbedded;
}