ZFTableHeaderView.h 459 B

1234567891011121314151617181920212223
  1. //
  2. // ZFTableHeaderView.h
  3. // ZFPlayer_Example
  4. //
  5. // Created by 紫枫 on 2018/10/30.
  6. // Copyright © 2018 紫枫. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ZFTableData.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface ZFTableHeaderView : UIView
  12. @property (nonatomic, strong) ZFTableData *data;
  13. @property (nonatomic, strong, readonly) UIImageView *coverImageView;
  14. @property (nonatomic, copy) void(^playCallback)(void);
  15. @end
  16. NS_ASSUME_NONNULL_END