InstrumentChooseViewController.h 464 B

1234567891011121314151617181920212223
  1. //
  2. // InstrumentChooseViewController.h
  3. // KulexiuForTeacher
  4. //
  5. // Created by 王智 on 2022/4/11.
  6. //
  7. #import "KSBaseViewController.h"
  8. typedef void(^ChooseInstrumentCallback)(NSMutableArray * _Nullable chooseArray);
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface InstrumentChooseViewController : KSBaseViewController
  11. @property (nonatomic, strong) NSMutableArray *preChooseArray;
  12. - (void)chooseCallback:(ChooseInstrumentCallback)callback;
  13. @end
  14. NS_ASSUME_NONNULL_END