I am creating an iPhone application with music player. I used AVPlayer
for creating music player. The issue is beginInterruption
method is not called in iOS 6.0.1 when a phone call arrives. But endInterruptionWithFlags:flags
called. In lesser versions of iOS it is working fine. And one more thing I noticed is, if a phone call come when the app is in background, beginInterruption
method is called!! But not when the app is active.
When I searched, I found the same issue is noted by some other also, and they stated as it is the bug with apple. And the issue is fixed in iOS 6.1.
So, what should I do? Should I try to fix the issue manually or tell the users to update the OS? At the same time, why it is working when the app is background? Any idea? Please help.
Thanks in advance.