1

我正在关注有关此主题的上一个问题,试图在我的应用程序中播放视频。我已将名为 iobserve1.mov 的视频复制到资源文件夹中,并在我的 h 文件中导入 MediaPlayer/MediaPlayer.h。我收到以下错误:

Apple Mach-O 链接器错误“_OBJC_CLASS_$_MPMoviePlayerController”,引用自:

Apple Mach-O Linker Error 链接器命令失败,退出代码为 1(使用 -v 查看调用)

@interface ObViewControllerIObserveMovie ()
@property (weak, nonatomic) IBOutlet UIView *movieView; // this should point to a view where the movie will play
@end

@implementation ObViewControllerIObserveMovie

- (void)viewDidLoad
{
[super viewDidLoad];
NSString *moviePath = [[NSBundle mainBundle] pathForResource:@"iobserve1" ofType:@"mov"];
MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL fileURLWithPath:moviePath]];
player.view.frame = CGRectMake(184, 200, 400, 300);
[self.view addSubview:player.view];
[player play];
}

在这里的任何帮助将不胜感激。

4

1 回答 1

1

您是否将 MediaPlayer 框架添加到您的项目中?它包含 MPMediaPlayerController 类

于 2013-03-12T17:20:37.503 回答