ari*_*old 2 avaudiorecorder ios uilocalnotification
我希望我错了,但我不认为这是可能的.在"本地和推送通知编程指南"的"准备自定义警报声音"下,它说"声音文件必须位于客户端应用程序的主包中".
如果你不能写入主包,那么如何让用户生成的录音(使用AVAudioRecorder)作为警报声播放?
一方面它似乎是不可能的,但另一方面我认为有应用程序可以做到这一点(我会寻找那些).
我通过将系统声音文件复制到〜/ Library/Sounds目录并将其命名为notification.caf来解决这个问题.服务器警报有效负载将此值指定为要播放的声音的名称.每当用户选择另一个声音时,该声音将被复制到同一文件夹并覆盖旧声音.
有效载荷:
{
"aps": {
"sound": "notification.caf"
}
Run Code Online (Sandbox Code Playgroud)
}
// get the list of system sounds, there are other sounds in folders beside /New
let soundPath = "/System/Library/Audio/UISounds/New"
func getSoundList() -> [String] {
var result:[String] = []
let fileManager = NSFileManager.defaultManager()
let enumerator:NSDirectoryEnumerator = fileManager.enumeratorAtPath(soundPath)!
for url in enumerator.allObjects {
let string = url as! String
let newString = string.stringByReplacingOccurrencesOfString(".caf", withString: "", options: NSStringCompareOptions.LiteralSearch, range: nil)
result.append(newString)
}
return result
}
// copy sound file to /Library/Sounds directory, it will be auto detect and played when a push notification arrive
class func copyFileToDirectory(fromPath:String, fileName:String) {
let fileManager = NSFileManager.defaultManager()
do {
let libraryDir = NSSearchPathForDirectoriesInDomains(NSSearchPathDirectory.LibraryDirectory, NSSearchPathDomainMask.UserDomainMask, true)
let directoryPath = "\(libraryDir.first!)/Sounds"
try fileManager.createDirectoryAtPath(directoryPath, withIntermediateDirectories: true, attributes: nil)
let systemSoundPath = "\(fromPath)/\(fileName)"
let notificationSoundPath = "\(directoryPath)/notification.caf"
let fileExist = fileManager.fileExistsAtPath(notificationSoundPath)
if (fileExist) {
try fileManager.removeItemAtPath(notificationSoundPath)
}
try fileManager.copyItemAtPath(systemSoundPath, toPath: notificationSoundPath)
}
catch let error as NSError {
print("Error: \(error)")
}
}
Run Code Online (Sandbox Code Playgroud)
推送通知声音可能有些错误,我必须重新启动手机才能在每次通知时可靠地播放声音.
| 归档时间: |
|
| 查看次数: |
1496 次 |
| 最近记录: |