123456789101112131415161718192021 |
- //
- // ArticleTextCell.h
- // smartRhino
- //
- // Created by 潘洪波 on 2019/11/18.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- 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
|