gpt4 book ai didi

iphone - 让视频在模拟器中播放

转载 作者:行者123 更新时间:2023-11-28 21:42:58 26 4
gpt4 key购买 nike

所以我在我的应用程序中弹出了一个警报 View ,单击 View 按钮时应该播放视频,但模拟器中没有任何反应。在我让它在模拟器中工作之前,我不想在设备上测试它。据我所知,这是下面的代码应该可以工作。它到达 Log 语句并输出到控制台,但视频不播放。有什么想法吗?

-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex: (NSInteger)buttonIndex{
if (buttonIndex == 1) {
NSURL *url = [NSURL URLWithString:@"http://srowley.co.uk/endyVid.mp4"];
MPMoviePlayerController *player = [[[MPMoviePlayerController alloc] initWithContentURL:url] autorelease];

//---play movie---
[player setFullscreen:YES];
[self.view addSubview:[player view]];
NSLog(@"Player Should play!");
[player play];
}
}

最佳答案

您需要在播放器 View 上设置框架。

    [[player view] setFrame: [self.view bounds]];

关于iphone - 让视频在模拟器中播放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3885367/

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