I've been working on a custom keyboard for iOS 8 for some time and everything went fine so far, but I still couldn't get my head around this tapping sound stuff.
I searched high and low for this issue and tried several approaches including
- Using AudioToolbox
- Using AVFoundation
- Put the tock.caf inside my bundle and just play it
Some of them works, in the simulators but none of them works in my devices. Could anyone who has successfully played sound when tapping on custom keyboard buttons care to share some working code? And it is the best if the code could honor the sound settings.
Finally I got an answer from other SO thread.
I have implemented and verified this method works on both simulators and devices on iOS8 Beta 2.
You can use
playInputClick()
method.Swift:
Objective-C:
See documentation for details.
As Farzad Nazifi mentioned above
Allow openAcesess
after a fresh install , solved my issue . And I recommend a simpler solution forplaying system keyboard tap sound
Swift and Objective-C All the same `we don't need to import any custom sound file just play the system tap sound.
Import AudioToolbox framework:
#import <AudioToolbox/AudioToolbox.h>
This code is tested in iOS 8 beta 5 , I hope apple would fix the bug (if it is a bug) in the GM version .
Import the framework:
And use:
Playing sounds requires OpenAccess, I don't know why Apple is doing it like this but it is what it is for now. This will also fix the lag and issues with it not working after trying to play the sound.
You can get OpenAccess by setting YES for the value of RequestsOpenAccess Key in the info.plist of the keyboard.
Next you should import AudioToolbox to your project, then use this code:
Now install your keyboard and give the Openaccess while adding it to your keyboards and it should work.
The key here is that iOS can only play the file types described here. iOS cannot play the file type
.caf
. The following code should work fine on iOS. You can use this website to convert your.caf
file to any file they have available on the site and that are compatible. I've tested it out already and.caf
conversions work even though it's not specified anywhere.