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

The audio player code that is working finely in the IOS 4.3 is not working in IOS 5.

Works fine in the simulator, but no sound from the device. Sometimes sound can be heared for a while and sfter few seconds the sound will stop.

No errors are found. IS this the problem with IOS 5.

share|improve this question
1  
Please think about increasing your accept rate.. – Krishnabhadra Oct 25 '11 at 9:03
i agree with Krishnabhadra... increase your acceptance rate... – DShah Oct 25 '11 at 10:47

2 Answers

up vote 3 down vote accepted

I think it worked when I used to change my line of code with ARC enabled. I just customized the release method, and it worked.

share|improve this answer
could you elaborate? I'm not sure what this sentence means (and I have a similar sound issue) – Toad Jul 22 '12 at 21:27
nah, I think Cyupa has the answer in this page... :) – andikurnia Jul 27 '12 at 5:53

If you have multiple audio/video players/recorders in your app, you should try specifying what type of audio session will begin. If you don't, the first one that will start, will block the others.

AVAudioSession *session = [AVAudioSession sharedInstance];
[session setCategory:AVAudioSessionCategoryRecord error:nil];

Try this.

share|improve this answer

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.