Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

After updating to xCode 4.6 my audio player crashes with no error logs. I cannot log the error as it crashes on play. I get no message on the debugger only a thread/ breakpoint on play.Anyone any ideas?

NSError *error;
NSString *stringPath1 = [[NSBundle mainBundle] pathForResource:@"beep" ofType:@"mp3"];
NSURL *url1 = [NSURL fileURLWithPath:stringPath1];
playerForRecording = [[AVAudioPlayer alloc] initWithContentsOfURL:url1 error:&error];
[playerForRecording setDelegate:self];
[playerForRecording play];

http://i1107.photobucket.com/albums/h385/snksnk1/stack%20overflow/ScreenShot2013-02-05at54421PM_zps72842a8f.png

share|improve this question
Try checking if the player is nil before calling its methods – Tim Castelijns Feb 5 at 14:53
Cleaning the project sometimes work for these strange errors. For xCode 4.6 you hit Command + K to perform the clean action...Might not solve your problem but worth a shot. – Filip Feb 5 at 15:16
Already tried cleaning the project and did check and player is not nil.. added a photo for you to see.. thanks – user1780591 Feb 5 at 15:55
try re-adding AVFoundation framework – erkanyildiz Feb 5 at 17:21
Do you have a break point set for all Exceptions? If so, try turning it off. – livingtech Feb 5 at 22:04

1 Answer

I'm using the same compiler and this works for me:

NSError *error;
NSString *stringPath1 = [[NSBundle mainBundle] pathForResource:@"beep" ofType:@"mp3"];
NSURL *url1 = [NSURL fileURLWithPath:stringPath1];
NSAssert(url1, @"URL is valid.");
self.player = [[AVAudioPlayer alloc] initWithContentsOfURL:url1 error:&error];
if(!self.player)
{
    NSLog(@"Error creating player: %@", error);
}
[self.player play];

Of course, in the .h, are the lines:

#import <AVFoundation/AVFoundation.h>
@interface myProgramViewController : UIViewController<AVAudioPlayerDelegate>

...

@property (nonatomic, strong) AVAudioPlayer* player;

with, in the .m, the corresponding:

@synthesize player = mPlayer;

Hope this helps.

share|improve this answer
already tried to clean my project and triple checked my header file. Still crashes.. tried with and without delegate declaration. added screen capture for you to see – user1780591 Feb 5 at 15:54
Did you try an NSLog of the error variable? (I added an edit just now.) – Gene Arboit Feb 5 at 16:09
NSLog is not get call so i assume there is no error?! – user1780591 Feb 5 at 16:21
A couple of things come to mind... Is beep.mp3 included in your project (and member of your target)? Also, try NSURL* url1 = [[NSBundle mainBundle] URLForResource:@"beep" withExtension:@"mp3"]; (instead of the 2nd and 3rd lines) and NSAssert(url1, @"URL is valid."); (where I edited my code). – Gene Arboit Feb 5 at 16:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.