12345678910111213141516171819 |
- //
- // HomeScrCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/3/16.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface HomeScrCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UILabel *titleL;
- - (void)setDataWithTitle:(NSString *)text isSelect:(BOOL)isSelect;
- @end
- NS_ASSUME_NONNULL_END
|