No Description

FKProductQuestionCell.h 491B

123456789101112131415161718192021
  1. //
  2. // FKProductAdviseCell.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. @interface FKProductQuestionCell : UITableViewCell
  10. @property (nonatomic, strong) UILabel *qNameLabel;
  11. @property (nonatomic, strong) UILabel *qTimeLabel;
  12. @property (nonatomic, strong) UIImageView *qIconImageView;
  13. @property (nonatomic, strong) UILabel *qContentLabel;
  14. + (CGFloat)height:(NSString *)question;
  15. @end