JCHATRecordAnimationView.h 562 B

12345678910111213141516171819202122232425
  1. //
  2. // JCHATRecordAnimationView.h
  3. // PALifeInsurance
  4. //
  5. // Created by da zhan on 13-7-27.
  6. // Copyright (c) 2013年 pingan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface JCHATRecordAnimationView : UIView
  10. {
  11. UIImageView *signalIV;
  12. NSTimer *animationTimer;
  13. UILabel *tipLabel;
  14. UIImageView *phoneIV;
  15. UIImageView *cancelIV;
  16. }
  17. - (void)startAnimation;
  18. - (void)stopAnimation;
  19. - (void)changeanimation:(double)lowPassResults;
  20. //切换录音和取消界面 YES:显示录音 NO:显示取消
  21. - (void)changeRecordView:(BOOL)flag;
  22. @end