MusicHeaderView.h 528 B

123456789101112131415161718192021
  1. //
  2. // MusicHeaderView.h
  3. // YBVideo
  4. //
  5. // Created by YunBao on 2018/7/28.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void (^MusicHeaderBlock)(NSString *type,NSString *title);
  10. typedef void (^MusicSegBlock)(NSString *type); //热门-收藏点击回调
  11. @interface MusicHeaderView : UIView
  12. @property(nonatomic,copy)MusicHeaderBlock headerEvent;
  13. @property(nonatomic,copy)MusicSegBlock segEvent;
  14. - (instancetype)initWithFrame:(CGRect)frame withBlock:(MusicHeaderBlock)callBack;
  15. @end