// // MergeMusicStaffView.h // KulexiuSchoolStudent // // Created by 王智 on 2024/7/25. // #import typedef void(^StaffPageCallback)(CGFloat pageHeight); NS_ASSUME_NONNULL_BEGIN @interface MergeMusicStaffView : UIView @property (nonatomic, assign) BOOL isReady; + (instancetype)shareIntance; // backgroundMode video audio - (void)loadWebViewWithSongID:(NSString *)songID renderType:(NSString *)renderType partIndex:(NSInteger)partIndex backgroundMode:(NSString *)backgroundMode; - (void)webActionCallback:(StaffPageCallback)callback; - (void)staffPageStartPlay; - (void)staffPageStop:(NSTimeInterval)currentProgress; - (void)updatePlayProgress:(NSTimeInterval)currentProgress; - (void)updateSliderProgress:(NSTimeInterval)sliderProgress; @end NS_ASSUME_NONNULL_END