gpt4 book ai didi

iphone - 简单的例子,但我不明白为什么没有泄漏

转载 作者:行者123 更新时间:2023-12-03 21:07:23 25 4
gpt4 key购买 nike

- (IBAction) btnFire:(id)sender {

NSString *path = [NSString stringWithFormat:@"%@%@", [[NSBundle mainBundle] resourcePath], @"/gunShot.wav"];

NSURL *filePath = [NSURL fileURLWithPath:path isDirectory:NO];

AVPlayer *shotSound = [[AVPlayer alloc] initWithURL:filePath];

[shotSound play];
}

如果我在这里释放 shotSound,它不会不播放。同时没有泄漏。

为什么仪器显示没有泄漏?如何释放shotSound?

最佳答案

由于按下按钮时您将需要一次又一次地发出声音,因此不应每次都在按钮中初始化它,您应该在类级别声明它,并且您可以在 viewDidLoad 方法中初始化它,或者也可以这样做

- (IBAction) btnFire:(id)sender {

if(shotSound==nil)
{
NSString *path = [NSString stringWithFormat:@"%@%@", [[NSBundle mainBundle] resourcePath], @"/gunShot.wav"];

NSURL *filePath = [NSURL fileURLWithPath:path isDirectory:NO];

shotSound = [[AVPlayer alloc] initWithURL:filePath];
}

[shotSound play];

}

dealloc中释放它。如果您只是希望此操作有声音,则可以使用 AVAudioPlayer

有时仪器的泄漏无法检测到,在这种情况下您可以使用构建和分析工具。另外,正如您所说,如果您释放播放器对象,则应用程序崩溃可能是因为音频仍在播放并且您释放了播放器(不确定)。

关于iphone - 简单的例子,但我不明白为什么没有泄漏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5660159/

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