// // ZFTableViewCell.h // ZFPlayer // // Created by 紫枫 on 2018/4/3. // Copyright © 2018年 紫枫. All rights reserved. // #import #import "ZFTableData.h" #import "ZFTableViewCellLayout.h" @protocol ZFTableViewCellDelegate - (void)zf_playTheVideoAtIndexPath:(NSIndexPath *)indexPath; @end @interface ZFTableViewCell : UITableViewCell @property (nonatomic, strong) ZFTableViewCellLayout *layout; @property (nonatomic, strong, readonly) UIImageView *coverImageView; @property (nonatomic, copy) void(^playCallback)(void); - (void)setDelegate:(id)delegate withIndexPath:(NSIndexPath *)indexPath; - (void)showMaskView; - (void)hideMaskView; - (void)setNormalMode; @end