No Description

PdProductShowCell.h 950B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // PdProductShowCell.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/7/17.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. // 产品展示cell,图片和文字形式
  8. #import <UIKit/UIKit.h>
  9. #import "ProductShowItem.h"
  10. @class PdProductShowCell;
  11. @protocol PdProductShowCellDelegate <NSObject>
  12. - (void)clickProductImg:(PdProductShowCell *)cell;
  13. @end
  14. @interface PdProductShowCell : FKDetailControllerBaseCell
  15. @property (nonatomic, weak) id <PdProductShowCellDelegate> delegate;
  16. @property (nonatomic, strong) UIImageView *showImgView;
  17. @property (nonatomic, strong) UILabel *contentLabel;
  18. @property (nonatomic, strong) NSLayoutConstraint *imgHeightCtrl;
  19. @property (nonatomic, strong) NSLayoutConstraint *imgWidthCtrl;
  20. - (void)configWithShowItem:(ProductShowItem *)item;
  21. + (CGFloat)cellHeightForText:(NSString *)text withImgHeight:(CGFloat)imgHeight;
  22. + (CGFloat)defaultImgHeight;
  23. + (CGFloat)defaultImgWidth;
  24. @end