Giter Site home page Giter Site logo

soundswitch's Introduction

SoundSwitch

Detect the silent switch state in iOS

It seems many folks out there want to alter the UI of their iOS apps when the sound switch is on. iOS doesn't have any public API for this, and the audio route methods from iOS 4 stopped working in iOS 5 (I may be missing a version here...). To make a long story short, if for some reason you need to detect the silent switch state, here's a simple solution:

Before you read on, please remember:

  • This solution will not give you real time detection, the check is ran every second.
  • It will only work on audio categories that respect the silent switch (the default ambient category does, but play & record does not).
  • It's a dirty hack, but 100% public API based.
  • Never pat a burning dog.

The trick is quite simple, all we need to do is to play a system sound, measure the amount of time it took for the sound to complete playing, and determine if we're in silent mode or not. We'll need to install a sound completion routine for that. Something like:

void SharkfoodSoundMuteNotificationCompletionProc(SystemSoundID  ssID,void* clientData); // sound completion proc
/** ... **/
if (AudioServicesCreateSystemSoundID((__bridge CFURLRef)url, &_soundId) == kAudioServicesNoError){
  AudioServicesAddSystemSoundCompletion(self.soundId, CFRunLoopGetMain(), kCFRunLoopDefaultMode, SharkfoodSoundMuteNotificationCompletionProc,(__bridge void *)(self));
}

All we need to do now is to periodically play a system sound (silent sound, probably) and check how long it took to play it - near zero value will mean the silent switch is on.

See the sample project in this repository for an example implementation.

soundswitch's People

Contributors

moshegottlieb avatar

Watchers

James Cloos avatar Afiq avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.