CoursewareTableDelegate.h 520 B

12345678910111213141516171819202122232425
  1. //
  2. // CoursewareTableDelegate.h
  3. // KulexiuForTeacher
  4. //
  5. // Created by 王智 on 2022/11/15.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^ShowMusicDetailCallback)(NSString *musicId);
  11. @interface CoursewareTableDelegate : NSObject<UITableViewDelegate,UITableViewDataSource>
  12. @property (nonatomic, strong) NSArray *dataArray;
  13. @property (nonatomic, assign) BOOL isModify;
  14. - (void)showMusicCallback:(ShowMusicDetailCallback)callback;
  15. @end
  16. NS_ASSUME_NONNULL_END