123456789101112131415161718192021222324252627282930313233 |
- //
- // TAPindanCell.h
- // FirstLink
- //
- // Created by Lemon on 15/4/25.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <TTTAttributedLabel.h>
- @interface CollectTableCell : UITableViewCell
- @property (nonatomic, assign) BOOL isSelected;
- @property (nonatomic, strong) UIImageView *photoImageView;
- @property (nonatomic, strong) TTTAttributedLabel *descLabel;
- @property (nonatomic, strong) UILabel *estimatePriceLabel;
- @property (nonatomic, strong) UIView *overlayerView;
- @property (nonatomic, strong) UIImageView *selectStatusIcon;
- @property (nonatomic, copy) void(^clickCallback)(CollectTableCell *cell, int tag, BOOL isSelected);
- + (CGFloat)height;
- - (void)setAttributedEstimatePrice:(NSString *)price;
- - (void)setCardSelected:(BOOL)selected;
- - (void)setCellEditStatus:(BOOL)isEditing;
- @end
|