我正在实现聊天应用程序。当用户获得bips时,我已经实现了振动效果。但是我想要消除振动效果并实现声音效果。有可能吗?
答案 0 :(得分:0)
您需要加载声音文件:
dingSoundFileURLRef = CFBundleCopyResourceURL( mainBundle,
CFSTR ( "ding" ),
CFSTR ( "caf" ),
NULL
);
AudioServicesCreateSystemSoundID( dingSoundFileURLRef, &dingSoundFileObject );
然后播放它:
AudioServicesPlaySystemSound( self.dingSoundFileObject );