CNLiveNotSeeCell.h
663 Bytes
//
// CNLiveNotSeeCell.h
// CNLiveSettingModule
//
// Created by CNLive-zxw on 2019/4/22.
// Copyright © 2019 cnlive. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
static NSString * const kCNLiveNotSeeCell = @"CNLiveNotSeeCell";
@class CNLiveNotSeeModel;
@class CNLiveNotSeeCell;
@protocol CNLiveNotSeeCellDelegate <NSObject>
- (void)clickedDel:(CNLiveNotSeeCell *)cell;
- (void)longPressCell:(CNLiveNotSeeCell *)cell;
@end
@interface CNLiveNotSeeCell : UICollectionViewCell
@property (nonatomic, strong) CNLiveNotSeeModel *model;
@property (nonatomic, weak) id<CNLiveNotSeeCellDelegate> delegate;
@end
NS_ASSUME_NONNULL_END