weijia.wang
weijia.wang

Reputation: 2168

MPMoviePlayerViewController work fine with debug but crash in release on iOS9

MPMoviePlayerViewController works fine with debug but crash in release on iOS9

MPMoviePlayerViewController *playerViewController = [[MPMoviePlayerViewController alloc] initWithContentURL:url];
self.navigationController presentMoviePlayerViewControllerAnimated:playerViewController];

My url is not nil.

it's working when debug in ios9 but crash when release, xcode7 say:

2015-10-15 14:53:04.808 ********[5110:1680634] NSScanner: nil string argument 2015-10-15 14:53:04.808 ********[5110:1680634] NSScanner: nil string argument libc++abi.dylib: terminate_handler unexpectedly threw an exception

Upvotes: 0

Views: 262

Answers (1)

Antoine Garcia
Antoine Garcia

Reputation: 143

With iOS9, MPMoviePlayerController is deprecated, you should use AVPlayerController !

Upvotes: 1

Related Questions