Shazron Abdullah, Thank you for your help,
I find the bug in the Phonegap source code and fix it, it work ok.
CDVSound.m
the procedure "prepareToPlay" , the format of filepath is wrong
NSString* filePath = [NSString stringWithFormat:@"
%@/%@.mp3", NSTemporaryDirectory(), uuidString];
change to
NSString* filePath = [NSString stringWithFormat:@"
%@%@", NSTemporaryDirectory(), uuidString];
在 2012年9月6日星期四UTC+8上午11时59分45秒,PhoneGap Fans写道: