Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5999705
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T00:35:24+00:00 2026-05-23T00:35:24+00:00

I’m currently working with a piece of code to detect whether a user has

  • 0

I’m currently working with a piece of code to detect whether a user has plugged in/unplugged headphones with their iPhone. The method I’m using to detect it is shown below.

void audioRouteChangeListenerCallback (void *inUserData, AudioSessionPropertyID inPropertyID,UInt32 inPropertyValueSize, const void *inPropertyValue){                            
    if (inPropertyID != kAudioSessionProperty_AudioRouteChange) return;

    CFStringRef route; UInt32 routeSize = sizeof(CFStringRef);
    AudioSessionGetProperty(kAudioSessionProperty_AudioRoute,&routeSize, &route);
    NSString *oldroute = (NSString*)route;
    NSLog(@"Audio Route changed to: %@",oldroute);
}

My issue occurs when I go to unplug the headphones. Plugging them in works as I expect, with the Log file showing “Audio Route changed to: Headphones”, however, when I unplug I get an empty string for oldroute. I was hoping that this value would be “Speaker” as it says in the Apple documents. Has anyone seen this before? Am I doing something wrong in getting the string oldroute? Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T00:35:25+00:00Added an answer on May 23, 2026 at 12:35 am

    I still have not found a good answer for the exact issue that I have posted as the question. Here is a workaround that may work for some people with a similar problem. This solution gives you the route that was active before the change. Ex. if you unplug your headphones you will get a string that is “Headphones” or if you put in your headphones you’ll get a string that is “Speaker”.

    void audioRouteChangeListenerCallback (void *inUserData, AudioSessionPropertyID     inPropertyID,UInt32 inPropertyValueSize, const void *inPropertyValue){                            
        if (inPropertyID != kAudioSessionProperty_AudioRouteChange) return;
    
        CFDictionaryRef routeChangeDictionary = (CFDictionaryRef)inPropertyValue;
        CFStringRef oroute;
        oroute = (CFStringRef)CFDictionaryGetValue(routeChangeDictionary,   CFSTR(kAudioSession_AudioRouteChangeKey_OldRoute));
        NSString *oldroute = (NSString*)oroute;
    }
    

    Hope this helps.

    Edit: I’m going to accept my answer until a better one comes along

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want use html5's new tag to play a wav file (currently only supported
I am currently running into a problem where an element is coming back from
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a JSP page retrieving data and when single or double quotes are
Seemingly simple, but I cannot find anything relevant on the web. What is the
Does anyone know how can I replace this 2 symbol below from the string
this is what i have right now Drawing an RSS feed into the php,
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I have just tried to save a simple *.rtf file with some websites and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.