SoundCell.h 878 B

12345678910111213141516171819202122232425
  1. //
  2. // SoundCell.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 15/11/23.
  6. // Copyright © 2015年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <AVFoundation/AVFoundation.h>
  10. @interface SoundCell :UITableViewCell<AVAudioPlayerDelegate>{
  11. AVAudioPlayer *player;
  12. }
  13. @property (strong, nonatomic) UIImage *soundImage;//语音img
  14. @property (strong, nonatomic) UIImageView *soundImageView;//语音imgview
  15. @property (strong, nonatomic) UIImageView *bubbleView;//语音气泡imgview
  16. @property (strong, nonatomic) UIImage *bubbleImage;//语音气泡img
  17. @property (strong, nonatomic) UILabel *soundTime;//语音持续时间控件
  18. @property (nonatomic, strong) NSString *localPath;//语音本地路径
  19. @property (nonatomic, strong) NSString *duration;//语音持续时间
  20. //设置语音气泡布局
  21. -(void)setPath:(NSString*)localPath:(NSString*)duration;
  22. @end