| 12345678910111213141516171819202122 |
- //
- // SelectClassVC.h
- // yunbaolive
- //
- // Created by ybRRR on 2020/3/2.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^selClassEvent)(NSMutableArray *arr);
- @interface SelectClassVC : YBBaseViewController
- @property (nonatomic, copy)selClassEvent classEvent;
- @property (nonatomic, strong)NSMutableArray *havaSelArr;
- @end
- NS_ASSUME_NONNULL_END
|