如果我在 iPhone 代码中实现以下内容:
NSString* soundPath = [[NSBundle mainBundle] pathForResource:soundFile ofType:@"wav"];
SystemSoundID feedbackSound;
AudioServicesCreateSystemSoundID((__bridge CFURLRef) [NSURL fileURLWithPath:soundPath], &feedbackSound);
AudioServicesPlaySystemSound(feedbackSound);
我真的必须释放“feedbackSound”,因为它是 C 代码吗?会泄漏吗?
我正在使用 ARC / iOS 6。