| 123456789101112131415161718192021222324252627 |
- //
- // TCMusicCollectionCell.h
- // DeviceManageIOSApp
- //
- // Created by rushanting on 2017/5/15.
- // Copyright © 2017年 tencent. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface TCMusicInfo : NSObject
- @property (nonatomic, copy) NSString* filePath;
- @property (nonatomic, copy) NSString* soneName;
- @property (nonatomic, copy) NSString* singerName;
- @property (nonatomic, assign) CGFloat duration;
- @end
- @interface TCMusicCollectionCell : UICollectionViewCell
- @property (nonatomic) UIImageView* iconView;
- @property (nonatomic) UILabel* songNameLabel;
- @property (nonatomic) UILabel* authorNameLabel;
- @property (nonatomic) UIButton* deleteBtn;
- - (void)setModel:(TCMusicInfo*)model;
- @end
|