不推荐使用'MPMoviePlayerController':首先在iOS 9.0中弃用

时间:2017-05-04 11:56:43

标签: ios objective-c ios9 mpmovieplayercontroller deprecated

有人已经迅速回答了这个问题 MPMoviePlayerController' is deprecated in swift我想在Objective-C中使用它。

我收到了这个警告

  不推荐使用'pM>'MPMoviePlayerController':首先在iOS 9.0中弃用

这是我的代码:

MPMoviePlayerController* _moviePlayer;
_moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:contentURL];
_moviePlayer.shouldAutoplay = YES;
[self.view addSubview:_moviePlayer.view];
[_moviePlayer setFullscreen:YES animated:YES];

1 个答案:

答案 0 :(得分:6)

在@Larme的帮助下,我解决了我的问题 1)我添加了两个框架

package.json

2)我用

替换我的代码
 postcss: function() {
    return [
      autoprefixer({
        browsers: [
          '>1%',
          'last 4 versions',
          'Firefox ESR',
          'not ie < 9', // React doesn't support IE8 anyway
        ]
      }),
    ];
},

我希望它能帮助谁面对这个问题。