gpt4 book ai didi

iPhone内存泄漏问题

转载 作者:搜寻专家 更新时间:2023-10-30 20:07:00 25 4
gpt4 key购买 nike

我的 iPhone 应用程序中有以下代码,警告内存泄漏!

这是我的代码

-(IBAction)playVideo:(id)sender  {  
NSString *filepath = [[NSBundle mainBundle] pathForResource:@"test"
ofType:@"mov"];
NSURL *fileURL = [NSURL fileURLWithPath:filepath];
MPMoviePlayerController *moviePlayerController = [[MPMoviePlayerController alloc] initWithContentURL:fileURL];
[moviePlayerController.view setFrame:CGRectMake(38, 100, 250, 163)];
[self.view addSubview:moviePlayerController.view];
moviePlayerController.fullscreen = YES;
[moviePlayerController play];
}

这是我收到的错误消息:在第 37 行分配并存储到“moviePlayerController”中的对象的潜在泄漏

我确实尝试过自动释放“moviePlayerController”,然后尝试释放它。两种情况都解决了内存泄漏问题,但视频无法在 iPhone 上播放!奇怪请帮忙。

最佳答案

警告是正确的:您正在泄漏 MPMoviePlayerController 实例。但是正如您所发现的,如果不保留 Controller ,您将无法有效地使用 View 。

解决方案是将 MPMoviePlayerController 存储到类中的 ivar/property 中,然后在完成其 View 时释放它(例如,在 viewDidUnloaddealloc).

关于iPhone内存泄漏问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7336063/

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