No Description

FKProductAnswerCell.h 451B

1234567891011121314151617181920
  1. //
  2. // FKProductAnswerCell.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 16/1/21.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FKProductQuestionCell.h"
  10. @interface FKProductAnswerCell : FKProductQuestionCell
  11. @property (nonatomic, strong) UIImageView *aIconImageView;
  12. @property (nonatomic, strong) UILabel *aContentLabel;
  13. + (CGFloat)heightWith:(NSString *)answer question:(NSString *)question;
  14. @end