| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // ZFTableViewCell.h
- // ZFPlayer
- //
- // Created by 紫枫 on 2018/4/3.
- // Copyright © 2018年 紫枫. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ZFTableData.h"
- #import "ZFTableViewCellLayout.h"
- @protocol ZFTableViewCellDelegate <NSObject>
- - (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<ZFTableViewCellDelegate>)delegate withIndexPath:(NSIndexPath *)indexPath;
- - (void)showMaskView;
- - (void)hideMaskView;
- - (void)setNormalMode;
- @end
|