HomeHotMusicView.h 429 B

1234567891011121314151617181920212223242526
  1. //
  2. // HomeHotMusicView.h
  3. // KulexiuForStudent
  4. //
  5. // Created by 王智 on 2022/8/29.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. typedef void(^HomeMusicActionBlock)(void);
  10. @interface HomeHotMusicView : UIView
  11. @property (weak, nonatomic) IBOutlet UIView *musicContentView;
  12. + (instancetype)shareInstance;
  13. - (void)homeMusicMore:(HomeMusicActionBlock)callback;
  14. + (CGFloat)getViewHeight;
  15. @end
  16. NS_ASSUME_NONNULL_END