gpt4 book ai didi

iphone - IOS [NSURL initFileURLWithPath :]: nil string parameter on loading video

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:45:04 24 4
gpt4 key购买 nike

我的视频内容有问题。我想从我的 viewcontroller 加载视频,但出现此错误:[NSURL initFileURLWithPath:]: 无字符串参数当我尝试从 url 加载视频时,视频不会显示。

我确定我的变量 targetURN 不为零。

我从这里加载我的 View Controller :

- (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];
}

在我的 View Controller 中:

- (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];
}
}

最佳答案

你试过先分配url吗?

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

作为一般建议,尝试始终使用 self.targetURN,或者将其同步到不同的名称,例如

@synchronize targetURN = _targetURN

然后在您的代码中使用 _targetURN。这可以确保您(在任何情况下)使用正确的属性。

(当然这适用于您的所有属性)

关于iphone - IOS [NSURL initFileURLWithPath :]: nil string parameter on loading video,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10935638/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com