1234567891011121314151617181920 |
- //
- // TDGroupLabelCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/5/8.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface TDGroupLabelCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UILabel *titleL;
- @property (weak, nonatomic) IBOutlet UIButton *deleteBtn;
- @end
- NS_ASSUME_NONNULL_END
|