我需要创建一个新的 NSNumber 或整数属性,称为primaryKey
包含在我创建的所有AVAudioPlayer对象中,以便我可以在audioPlayerDidFinishPlaying
回调中读取该属性的值并确切知道播放了哪个数据库记录。
我需要这样做的原因是:我不能使用播放器URL 属性来确定它是哪个数据库记录,因为可以在播放列表中多次使用同一个声音文件。
如何向这样的现有 iOS 类添加新属性?
例子:
AVAudioPlayer *newAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:soundFileURL error:nil];
self.theAudio = newAudio; // automatically retain audio and dealloc old file if new file is loaded
if (theAudio != nil) [audioPlayers addObject:theAudio];
[newAudio release];
[theAudio setDelegate: theDelegate];
[theAudio setNumberOfLoops: 0];
[theAudio setVolume: callVolume];
// This is the new property that I want to add
[theAudio setPrimaryKey: thePrimaryKey];
[theAudio play];
然后我会像这样在回调中检索它:
- (void) audioPlayerDidFinishPlaying:(AVAudioPlayer *)player successfully:(BOOL)flag
{
NSNumber *finishedSound = [NSNumber numberWithInt:[player primaryKey]];
// Do something with this information now...
}