ChatAudioRecordNoticeView.h 673 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // ChatAudioRecordNoticeView.h
  3. // BuguLive
  4. //
  5. // Created by 朱庆彬 on 2017/8/22.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #define NIMKit_ViewWidth 160
  10. #define NIMKit_ViewHeight 110
  11. #define NIMKit_TimeFontSize 30
  12. #define NIMKit_TipFontSize 15
  13. @interface ChatAudioRecordNoticeView : UIView
  14. {
  15. UIImageView *_backgrounView;
  16. UIImageView *_tipBackgroundView;
  17. }
  18. @property (nonatomic, assign) int mstatus; //1 开始了,,2 显示上滑什么,,,3 显示取消
  19. @property (nonatomic, assign) NSTimeInterval recordTime;
  20. @property (nonatomic, strong) UILabel *timeLabel;
  21. @property (nonatomic, strong) UILabel *tipLabel;
  22. @end