123456789101112131415161718192021222324252627282930313233 |
- //
- // PdProductShowCell.h
- // FirstLink
- //
- // Created by jack on 15/7/17.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- // 产品展示cell,图片和文字形式
- #import <UIKit/UIKit.h>
- #import "ProductShowItem.h"
- @class PdProductShowCell;
- @protocol PdProductShowCellDelegate <NSObject>
- - (void)clickProductImg:(PdProductShowCell *)cell;
- @end
- @interface PdProductShowCell : FKDetailControllerBaseCell
- @property (nonatomic, weak) id <PdProductShowCellDelegate> delegate;
- @property (nonatomic, strong) UIImageView *showImgView;
- @property (nonatomic, strong) UILabel *contentLabel;
- @property (nonatomic, strong) NSLayoutConstraint *imgHeightCtrl;
- @property (nonatomic, strong) NSLayoutConstraint *imgWidthCtrl;
- - (void)configWithShowItem:(ProductShowItem *)item;
- + (CGFloat)cellHeightForText:(NSString *)text withImgHeight:(CGFloat)imgHeight;
- + (CGFloat)defaultImgHeight;
- + (CGFloat)defaultImgWidth;
- @end
|