TCMusicCollectionCell.h 701 B

123456789101112131415161718192021222324252627
  1. //
  2. // TCMusicCollectionCell.h
  3. // DeviceManageIOSApp
  4. //
  5. // Created by rushanting on 2017/5/15.
  6. // Copyright © 2017年 tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TCMusicInfo : NSObject
  10. @property (nonatomic, copy) NSString* filePath;
  11. @property (nonatomic, copy) NSString* soneName;
  12. @property (nonatomic, copy) NSString* singerName;
  13. @property (nonatomic, assign) CGFloat duration;
  14. @end
  15. @interface TCMusicCollectionCell : UICollectionViewCell
  16. @property (nonatomic) UIImageView* iconView;
  17. @property (nonatomic) UILabel* songNameLabel;
  18. @property (nonatomic) UILabel* authorNameLabel;
  19. @property (nonatomic) UIButton* deleteBtn;
  20. - (void)setModel:(TCMusicInfo*)model;
  21. @end