我在现有的项目里面调用了MPMoviePlayerController 的 initWithContentURL方法,结果出现了EXC_BAD_ACCESS问题,纠结了两天了,今天终于被我找到原因了。
发现线索:
1、我先开弄了一个Demo来实现MPMoviePlayerController的正常使用,以确认MPMoviePlayerController的使用是正确的。
2、我开始将MPMoviePlayerController的使用放到现有工程的入口出,以减少其它功能对此的影响。
3、在不断的注释代码后终于发现在我最开始的时候调用了
NSNotificationCenter * nc = [NSNotificationCenter defaultCenter];
[nc addObserver:self selector:@selector(testNotifications:) name:nil object:nil];
如果注释掉这句就正常了,^_^..
4、最终问题确认在是在注册通知的时候,name:nil设为空就会出错,给换了个名字后就正常了。。