I am implem开发者_如何学Goenting chat application.I have implemented vibrate effect when user get bips.but i want to remove vibrate effect and implement sound effect.how it is possible?
You'll need to load a sound file:
dingSoundFileURLRef = CFBundleCopyResourceURL( mainBundle,
CFSTR ( "ding" ),
CFSTR ( "caf" ),
NULL
);
AudioServicesCreateSystemSoundID( dingSoundFileURLRef, &dingSoundFileObject );
then play it:
AudioServicesPlaySystemSound( self.dingSoundFileObject );
精彩评论