つまづいたのでメモ。
効果音を鳴らしてから、録音を開始したい時などに。
(Swift3.0,Xcode8 beta3)
SoundCompletion.swift
//通知音を選択
let soundIdRing:SystemSoundID = 1057
//通知音を再生終了時のコールバックを指定
AudioServicesAddSystemSoundCompletion(soundIdRing, nil, nil, { (soundIdRing, nil) -> Void in
//再生終了後に実行したいコード
print("hoge")
}, nil)
//音を鳴らす
AudioServicesPlaySystemSound(soundIdRing)