JXShareFileTableViewCell.h 910 B

12345678910111213141516171819202122232425262728
  1. //
  2. // JXShareFileTableViewCell.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 17/7/6.
  6. // Copyright © 2017年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class JXShareFileObject;
  10. @interface JXShareFileTableViewCell : UITableViewCell
  11. @property (strong, nonatomic) UIImageView * typeView;
  12. @property (strong, nonatomic) UILabel * fileTitleLabel;
  13. @property (strong, nonatomic) UILabel * sizeLabel;
  14. @property (strong, nonatomic) UILabel * fromLabel;
  15. @property (strong, nonatomic) JXLabel * fromUserLabel;
  16. @property (strong, nonatomic) UILabel * timeLabel;
  17. @property (strong, nonatomic) UIImageView * didDownView;
  18. @property (strong, nonatomic) UIProgressView * progressView;
  19. @property (strong, nonatomic) UIButton * downloadStateBtn;
  20. @property (strong, nonatomic) JXShareFileObject *shareFile;
  21. -(void)setShareFileListCellWith:(JXShareFileObject *)shareFileObjcet indexPath:(NSIndexPath *) indexPath;
  22. @end