1234567891011121314151617181920 |
- //
- // HomeSchoolContentCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/9/21.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface HomeSchoolContentCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *contentL;
- + (HomeSchoolContentCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- - (void)setDataText:(NSString *)text;
- @end
- NS_ASSUME_NONNULL_END
|