1234567891011121314151617181920 |
- //
- // FKProductAnswerCell.h
- // FirstLink
- //
- // Created by ascii on 16/1/21.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FKProductQuestionCell.h"
- @interface FKProductAnswerCell : FKProductQuestionCell
- @property (nonatomic, strong) UIImageView *aIconImageView;
- @property (nonatomic, strong) UILabel *aContentLabel;
- + (CGFloat)heightWith:(NSString *)answer question:(NSString *)question;
- @end
|