0

我可以聽到大約5秒的音頻,然後我的屏幕是不斷「加載電影...」問題,玩視頻的MPMoviePlayerController爲iPad

我在模擬器上測試。

STVideo *mySTVideo; 
    mySTVideo = [items objectAtIndex:indexPath.row]; 

    moviePlayerViewController = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL URLWithString:mySTVideo.video_url]]; 

    NSLog(@"URL: %@", mySTVideo.video_url); 

    moviePlayerViewController.view.backgroundColor = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"st-screen.png"]]; 
    [self presentMoviePlayerViewControllerAnimated:moviePlayerViewController]; 

    [moviePlayerViewController release]; 
+0

檢查這個http://cocoabugs.blogspot.com/2010/08/troubleshoting-iphone.html – 2011-01-13 07:41:10

回答

0

我想presentMoviePlayerViewControllerAnimated:不保留moviePlayer和你在下一行釋放它。 嘗試刪除發佈行並查看它是否有效,如果它確實創建了一個屬性來保留moviePlayer並跳過泄漏。

相關問題