0

何らかの理由でsetcurrentPlaybackメソッドが機能しません。ご意見ありがとうございます...

-(IBAction)abspielen:(id)sender {

  NSString *titleOfButton = [sender titleForState:UIControlStateNormal];
  NSBundle *bundle = [NSBundle mainBundle];
  NSString *moviePath = [bundle pathForResource:titleOfButton ofType:@"mov"];
  NSURL *movieURL = [ NSURL fileURLWithPath:moviePath];

  MPMoviePlayerController *themovie = 
        [[MPMoviePlayerController alloc]initWithContentURL: movieURL];   

  [themovie play];

  [themovie setCurrentPlaybackRate:2.f];  

  [themovie release];

  MPMoviePlayerViewController *moviePlayer = 
     [[MPMoviePlayerViewController alloc] initWithContentURL:movieURL];
  [self presentMoviePlayerViewControllerAnimated:moviePlayer];

  [moviePlayer release];


}
4

1 に答える 1

0

行を追加

themovie.rate=2.f;

線の挿入は[themovie setCurrentPlaybackRate:2.f];その仕事かもしれません....

HTMLブログを使用している場合、この方法は機能しないため、指定された1行だけを試してください

あなたにとって役に立つかもしれません.... :-)

于 2012-04-21T11:21:37.193 に答える