I have an app I am working on and It uses some of the hardware sensors to provide data on screen, there is a Label that updates with the number. I want a sound to play whenever the number is above 100 or something. For example, say it was reading numbers then all of the sudden it finds a good spot (or whatever), then I would like a sound to play or a light to light up. I am an absolute beginner and it would be nice if the answer would be easy for a absolute beginner to understand.
|
I am using the system AudioToolbox.framework for playing sounds in my simple game. I added this static function to common MyGame class:
I added the "Morse.aiff" file to project Resources and initialized it in (any) class initialization with the following:
And then I played sound with this call:
Also, don't forget to import AudioServices.h file. This audio toolbox can play also different sound formats. |
||||
|
|
h
m
|
||||
|
|
|
Check out the documentation for the |
|||
|
|
If the sounds gonna up to 5 seconds and no stereo output is needed I would recommend you to do that with system sounds. It is easy and better solution then any other. Apple sample code is provided under name SysSound EDIT1 Or maybe tutorial could help you more http://howtomakeiphoneapps.com/2009/08/how-to-play-a-short-sound-in-iphone-code/ |
|||||||||
|
|
Take a look at following links; http://blog.guvenergokce.com/avaudioplayer-on-iphone-simulator/57/ http://mobileorchard.com/easy-audio-playback-with-avaudioplayer/ |
|||
|
|
