Still spending long hours trying to work out whats wrong here:
I have input the following code, and attached it to a button in the interface:
Code:
- (IBAction)wordsoundbutton:(id)sender {
if (wordlabel.text == @"red") {
NSString *path = [[NSBundle mainBundle]pathForResource:@"test" ofType:@"mp3"];
AVAudioPlayer* theAudio=[[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath: path] error:NULL];
theAudio.delegate = self;
[theAudio play];
}
}
When i click the button when the UILabel says "red" it comes up with the following message:
Code:
2011-11-03 20:42:13.389 hearingpad[24920:10703] Error loading /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn: dlopen(/System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn, 262): Symbol not found: ___CFObjCIsCollectable
Referenced from: /System/Library/Frameworks/Security.framework/Versions/A/Security
Expected in: /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.0.sdk/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
in /System/Library/Frameworks/Security.framework/Versions/A/Security
Terminating in response to SpringBoard's termination.
Program ended with exit code: 0
grateful for support thanks