ZFTableViewCell.h 739 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // ZFTableViewCell.h
  3. // ZFPlayer
  4. //
  5. // Created by 紫枫 on 2018/4/3.
  6. // Copyright © 2018年 紫枫. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ZFTableData.h"
  10. #import "ZFTableViewCellLayout.h"
  11. @protocol ZFTableViewCellDelegate <NSObject>
  12. - (void)zf_playTheVideoAtIndexPath:(NSIndexPath *)indexPath;
  13. @end
  14. @interface ZFTableViewCell : UITableViewCell
  15. @property (nonatomic, strong) ZFTableViewCellLayout *layout;
  16. @property (nonatomic, strong, readonly) UIImageView *coverImageView;
  17. @property (nonatomic, copy) void(^playCallback)(void);
  18. - (void)setDelegate:(id<ZFTableViewCellDelegate>)delegate withIndexPath:(NSIndexPath *)indexPath;
  19. - (void)showMaskView;
  20. - (void)hideMaskView;
  21. - (void)setNormalMode;
  22. @end