3

動画コンテンツに問題があります。ビューコントローラーからビデオをロードしたいのですが、次のエラーが表示されます: [NSURL initFileURLWithPath:]: nil string parameter URL からビデオをロードしようとすると、ビデオが表示されません。

変数 targetURN が nil ではないことは確かです。

ここから、ViewController をロードします。

- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
    switch (buttonIndex) {
        case 0:
            [self openVideoView:@"Video"];
        break;
        case 1:
            [self openWebview:@"About"];
        break;
        case 2:
            [self openWebview:@"http://www.url.com"];
        break;
    }
}

- (void)openVideoView:(NSString *)url{
    IDPVideoView *vv = [[IDPVideoView alloc] initWithURN:url];
    [self presentModalViewController:vv animated:NO];    
}

私のviewcontrollerで:

- (void)viewDidLoad
{
    [super viewDidLoad];
    NSURL *videoURL = nil;

    if ([self.targetURN hasPrefix:@"http"])
    {
        videoURL = [NSURL URLWithString:targetURN];
    }
    else
    {
        videoURL = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:targetURN ofType:@"mp4"]];
    }
    if(videoURL != nil) {
        MPMoviePlayerController *moviePlayer = 
        [[MPMoviePlayerController alloc] initWithContentURL:videoURL];
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(moviePlayBackDidFinish:) name:MPMoviePlayerPlaybackDidFinishNotification object:moviePlayer];

        moviePlayer.controlStyle = MPMovieControlStyleDefault;
        moviePlayer.shouldAutoplay = YES;
        [moviePlayer prepareToPlay];
        [self.view addSubview:moviePlayer.view];
        [moviePlayer setFullscreen:YES animated:YES];
    }
}
4

2 に答える 2

1

最初にURLを割り当ててみましたか?

NSURL *vidURL = [[NSURL alloc] initWithString:self.targetURN];

一般的なアドバイスとして、self.targetURN常に使用するか、次のような別の名前に同期してみてください

@synchronize targetURN = _targetURN

_targetURNこれにより、(いずれにせよ)正しいプロパティを使用することが保証されます。

(もちろん、これはすべてのプロパティに当てはまります)

于 2012-06-07T16:26:29.920 に答える
0

この行を追加してエラー部分を解決しました

NSString *urlString = [NSString stringWithFormat:url];

- (void)openVideoView:(NSString *)url{
    NSString *urlString = [NSString stringWithFormat:url];
    IDPVideoView *vv = [[IDPVideoView alloc] initWithURN:url];
    [self presentModalViewController:vv animated:NO];    
}

しかし、ビデオはまだ表示されません。

于 2012-06-08T07:16:06.187 に答える