我是Xcode的新手,所以我一直在尝试跟进教程,但没有遇到任何解释我想要实现的内容。我只想在打开应用程序时自动播放视频。我有点工作,音频播放,但我看不到任何视频。我错过了什么吗?我在输出窗口中收到此警告:
警告:尝试在ViewController上显示MPMoviePlayerViewController:0x831d7a0:0x9d10540,其视图不在窗口层次结构中!
在我的ViewController.h
:
#import <UIKit/UIKit.h>
#import <MediaPlayer/MediaPlayer.h>
@interface ViewController : UIViewController
@end
ViewController.m
:
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
NSURL *url =[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"Placeholder" ofType:@"mp4"]];
MPMoviePlayerViewController *playercontroller = [[MPMoviePlayerViewController alloc] initWithContentURL:url];
[self presentMoviePlayerViewControllerAnimated:playercontroller];
playercontroller.moviePlayer.movieSourceType = MPMovieSourceTypeFile;
[playercontroller.moviePlayer play];
playercontroller = nil;
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
答案 0 :(得分:1)
而不是
[playercontroller.moviePlayer play];
DO
[playercontroller play];
旁注:
还要检查您的命名约定。在Objective-C变量名称中,“should”在变量中的每个新单词上都有大写字母。例如。而不是playercontroller
使用playerController
。
答案 1 :(得分:0)
我知道你的状态。
这是来自Xcode的警告。所以,你只需更改代码。
像这样,[playercontroller performSelector:@selector(player)];