- (void)viewDidLoad {
[super viewDidLoad];
NSURL *videoURL = [[NSBundle mainBundle]URLForResource:@"thoughtcastAnimate_v02" withExtension:@"mov"];
// create an AVPlayer
AVPlayer *player = [AVPlayer playerWithURL:videoURL];
// create a player view controller
AVPlayerViewController *controller = [[AVPlayerViewController alloc]init];
controller.player = player;
[player play];
// show the view controller
[self addChildViewController:controller];
[self.view addSubview:controller.view];
controller.view.frame = self.view.frame;
// Do any additional setup after loading the view.
}
Cela fonctionne bien avec un fichier mp4. Mais j'ai besoin d'un fichier .mov pour être lu ! C'est pour l'écran d'accueil de mon application. J'ai ajouté le fichier .mov aux actifs. Je ne suis pas sûr de ce qu'il faut faire ici.