// // ArticleTextCell.h // smartRhino // // Created by 潘洪波 on 2019/11/18. // Copyright © 2019 tederen. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface ArticleTextCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *contentLab; @property (nonatomic, strong) NSString *content ; + (CGFloat)cellHeight:(NSString *)text; @end NS_ASSUME_NONNULL_END