vote up 2 vote down star

Does NBeep() exist on the iPhone? I just want to play a short error sound to indicate that the key pressed is not a legal character. I will play this in my textField delegate that dissalows the illegal characters.

This site is great btw!

flag

67% accept rate

6 Answers

vote up 3 vote down check

No, NSBeep() is part of the ApplicationKit framework which doesn't exist on the iPhone.

link|flag
vote up 0 vote down

Gah, I looked and looked and I cant find a basic stock system sound anywhere either, not even a beep.

Its annoying the api is not there, thats all.

(I'm writing a calibration routine that needs a beep, not an audio stream, only a simple beep. It will have a long uptime and may need error "beeps" to signal low battery or low remaining disk space, dont you have a simple error beep for me ?)

link|flag
vote up 0 vote down

Thanks everyone :-)

link|flag
vote up 0 vote down

I don't think error beeps as notification would be wise since people might often have their phones muted or earphones dangling.

link|flag
vote up 1 vote down

I wouldn't use system sounds all together. They are but annoying - BEEP - Rather give the user a visual clue, like the screen flashing up for the fraction of a second or make the widget wiggle a bit, like when you mistype the password on os x.

link|flag
vote up 0 vote down

Cheers Jason. I'm using a uialertview instead of just ignoring the inputter. Any good alternatives? Are there any other error system sounds available?

link|flag
1  
Hey Dan, you can look at the documentation for AudioServicePlayAlertSound and AudioServicePlaySystemSound in the System Sound framework on the iPhone. There are no defaults, so you will have to provide the sound file to play (a short beep or whatever). The docs are pretty good. – Jason Coco Jan 5 at 12:51
Also, this isn't really set up like a forum, so in the future, you should make this a comment on my answer :) Only put something here if you answer your own question. You can also edit your question any time to add more details or whatever. – Jason Coco Jan 5 at 12:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.