When we enter text to UITextField we get sound while typing text , how do I remove/disable that default sound (using code) and add other custom sound?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
You cannot change the default keyboard sound using any public API. You can however, but that's a very ugly solution, intercept the delegate of UITextField and play a sound when a new character is entered. I don't recommend it, though. |
|||