QMFileTableCell.h 338 B

123456789101112131415161718
  1. //
  2. // QMFileTableCell.h
  3. // IMSDK-OC
  4. //
  5. // Created by HCF on 16/8/11.
  6. // Copyright © 2016年 HCF. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class QMFileModel;
  10. @interface QMFileTableCell : UITableViewCell
  11. @property (nonatomic, strong)UIImageView *pickedItemImageView;
  12. - (void)configureWithModel: (QMFileModel *)model;
  13. @end