-(void)initVoiceModule
{
//初始化录音vc
self.recorderVC = [[ChatVoiceRecorderVCalloc]init];
self.recorderVC.vrbDelegate = self;
//初始化播放器
self.player = [[AVAudioPlayer alloc]init];
//添加长按手势
UILongPressGestureRecognizer *longPrees = [[UILongPressGestureRecognizeralloc]initWithTarget:selfaction:@selector(recordWav:)];
longPrees.delegate = self;
[bottomView.recordBtnaddGestureRecognizer:longPrees];
}