これを使用してAVAudioPlayerをプロパティに割り当てようとしています
NSURL *soundURL = [[NSBundle mainBundle] URLForResource:@"error"
withExtension:@"aiff"];
AVAudioPlayer *avSound = [[AVAudioPlayer alloc]
initWithContentsOfURL:soundURL error:nil];
self.soundError = avSound;
最後の行に次のようなエラーが表示されます。メンバー参照型'structobjc_class*'はポインターです。多分あなたは'->'を使うつもりでしたか?
プロパティは次のように宣言されます
@property (nonatomic, strong) AVAudioPlayer *soundError;
ポインタ?理解できません。
ありがとう