我收到此错误:
/: 'JSQSystemSoundPlayer' 没有可见的@interface 声明选择器'playAlertSoundWithFilename:fileExtension:'
我正在创建一个聊天应用程序JSQMessagesViewController
。这是代码:
if (asAlert) {
[[JSQSystemSoundPlayer sharedPlayer] playAlertSoundWithFilename:fileName fileExtension:kJSQSystemSoundTypeAIFF];
}
else {
[[JSQSystemSoundPlayer sharedPlayer] playSoundWithFilename:fileName fileExtension:kJSQSystemSoundTypeAIFF];
}
错误出现在 if 和 else 语句上。我该如何解决?