iOS用MPMoviePlayerViewController 播放MP4视频
2018-07-20 来源:open-open
1.新建single view工程,导入MediaPlayer库,导入一个视频文件test1.mp4
2.ViewController.h
#import <UIKit/UIKit.h>
#import <MediaPlayer/MediaPlayer.h>
@interface ViewController : UIViewController {
MPMoviePlayerViewController *_playerVC;
}
@end
2.ViewController.m
#import "ViewController.h"
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
NSString *path = [[NSBundle mainBundle] pathForResource:@"test1" ofType:@"mp4"];
NSLog(@"%@", path);
NSURL *url = [NSURL fileURLWithPath:path];
_playerVC = [[MPMoviePlayerViewController alloc] initWithContentURL:url];
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame = CGRectMake(100, 100, 100, 40);
[button addTarget:self action:@selector(play) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:button];
}
- (void)play
{
[self presentMoviePlayerViewControllerAnimated:_playerVC];
[_playerVC.moviePlayer play];
}
@end
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。
最新资讯
热门推荐