TestsTested | ✓ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Jan 2018 |
Maintained by Jesse Squires.
A fancy Obj-C wrapper for Cocoa System Sound Services, for iOS and OS X.
This library is a light-weight component to play sound effects in your app. To determine your audio needs, see Best Practices for iOS Audio.
tl;dr
When your sole audio need is to play alerts and user-interface sound effects, use Core Audio’s System Sound Services.
Your sound files must be:
- No longer than 30 seconds in duration
- In linear PCM or IMA4 (IMA/ADPCM) format
- Packaged in a
.caf
,.aif
, or.wav
file
If this does not fit your needs, then this library is not for you! See AVAudioPlayer, instead.
NSUserDefaults
to globally toggle sound effects in your appSystemSoundID
instances) and purges on memory warning@import JSQSystemSoundPlayer;
[[JSQSystemSoundPlayer sharedPlayer] playSoundWithFilename:@"mySoundFile"
fileExtension:kJSQSystemSoundTypeAIF
completion:^{
// completion block code
}];
String constants for file extensions provided for you:
kJSQSystemSoundTypeCAF
kJSQSystemSoundTypeAIF
kJSQSystemSoundTypeAIFF
kJSQSystemSoundTypeWAV
Need a setting in your app's preferences to toggle sound effects on/off? JSQSystemSoundPlayer
can do that, too! There's no need to ever check the saved settings ([JSQSystemSoundPlayer sharedPlayer].on
) before you play a sound effect. Just play a sound like in the example above. JSQSystemSoundPlayer
respects whatever setting has been previously saved.
[[JSQSystemSoundPlayer sharedPlayer] toggleSoundPlayerOn:YES];
Need to load your audio resources from a specific bundle? JSQSystemSoundPlayer
uses the main bundle by default, but you can specify another.
NOTE: for each sound that is played JSQSystemSoundPlayer
will always search the last specified bundle. If you are playing sound effects from multiple bundles, you will need to specify the bundle before playing each sound.
[JSQSystemSoundPlayer sharedPlayer].bundle = [NSBundle mainBundle];
The included example app, Example.xcodeproj
, exercises all functionality of this framework. There are applications for iOS as well as OS X.
Read the docs. Generated with jazzy. Hosted by GitHub Pages. More information on the gh-pages
branch.
Please follow these sweet contribution guidelines.
Created and maintained by @jesse_squires.
JSQSystemSoundPlayer
is released under an MIT License. See LICENSE
for details.
Copyright © 2013-present Jesse Squires.
Please provide attribution, it is greatly appreciated.