123456789101112131415161718192021 |
- //
- // FKProductAdviseCell.h
- // FirstLink
- //
- // Created by ascii on 16/1/21.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface FKProductQuestionCell : UITableViewCell
- @property (nonatomic, strong) UILabel *qNameLabel;
- @property (nonatomic, strong) UILabel *qTimeLabel;
- @property (nonatomic, strong) UIImageView *qIconImageView;
- @property (nonatomic, strong) UILabel *qContentLabel;
- + (CGFloat)height:(NSString *)question;
- @end
|