説明なし

CollectTableCell.h 845B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // TAPindanCell.h
  3. // FirstLink
  4. //
  5. // Created by Lemon on 15/4/25.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <TTTAttributedLabel.h>
  10. @interface CollectTableCell : UITableViewCell
  11. @property (nonatomic, assign) BOOL isSelected;
  12. @property (nonatomic, strong) UIImageView *photoImageView;
  13. @property (nonatomic, strong) TTTAttributedLabel *descLabel;
  14. @property (nonatomic, strong) UILabel *estimatePriceLabel;
  15. @property (nonatomic, strong) UIView *overlayerView;
  16. @property (nonatomic, strong) UIImageView *selectStatusIcon;
  17. @property (nonatomic, copy) void(^clickCallback)(CollectTableCell *cell, int tag, BOOL isSelected);
  18. + (CGFloat)height;
  19. - (void)setAttributedEstimatePrice:(NSString *)price;
  20. - (void)setCardSelected:(BOOL)selected;
  21. - (void)setCellEditStatus:(BOOL)isEditing;
  22. @end