我正在尝试使用此将 AVAudioPlayer 分配给属性
NSURL *soundURL = [[NSBundle mainBundle] URLForResource:@"error"
withExtension:@"aiff"];
AVAudioPlayer *avSound = [[AVAudioPlayer alloc]
initWithContentsOfURL:soundURL error:nil];
self.soundError = avSound;
我在最后一行收到一条错误消息:成员引用类型'struct objc_class *'是一个指针;也许你的意思是使用 '->' ?
该属性被声明为
@property (nonatomic, strong) AVAudioPlayer *soundError;
指针?我不明白。
谢谢