| 12345678910111213141516171819202122232425 |
- //
- // SoundCell.h
- // IBOSS
- //
- // Created by guan hong hou on 15/11/23.
- // Copyright © 2015年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <AVFoundation/AVFoundation.h>
- @interface SoundCell :UITableViewCell<AVAudioPlayerDelegate>{
- AVAudioPlayer *player;
- }
- @property (strong, nonatomic) UIImage *soundImage;//语音img
- @property (strong, nonatomic) UIImageView *soundImageView;//语音imgview
- @property (strong, nonatomic) UIImageView *bubbleView;//语音气泡imgview
- @property (strong, nonatomic) UIImage *bubbleImage;//语音气泡img
- @property (strong, nonatomic) UILabel *soundTime;//语音持续时间控件
- @property (nonatomic, strong) NSString *localPath;//语音本地路径
- @property (nonatomic, strong) NSString *duration;//语音持续时间
- //设置语音气泡布局
- -(void)setPath:(NSString*)localPath:(NSString*)duration;
- @end
|