iOS简单的视频播放详解手机开发

导入 MediaPlayer.framework

- (void)viewDidLoad 
{ 
    [super viewDidLoad]; 
      
    NSString* path = [[NSBundle mainBundle] pathForResource:@"test1" ofType:@"mp4"]; 
    NSURL* url = [NSURL fileURLWithPath:path]; 
    _playerController = [[MPMoviePlayerViewController alloc] initWithContentURL:url]; 
      
    UIButton* button = [UIButton buttonWithType:UIButtonTypeRoundedRect]; 
    button.frame = CGRectMake(100, 100, 100, 40); 
    button.backgroundColor = [UIColor redColor]; 
    [button addTarget:self action:@selector(play) forControlEvents:UIControlEventTouchUpInside]; 
    [self.view addSubview:button]; 
} 
  
- (void)play{ 
    [self presentMoviePlayerViewControllerAnimated:_playerController]; 
    //播放 
    [_playerController.moviePlayer play]; 
}

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/tech/app/5208.html

(0)
上一篇 2021年7月16日 23:39
下一篇 2021年7月16日 23:39

相关推荐

发表回复

登录后才能评论