26 lines
644 B
Objective-C
26 lines
644 B
Objective-C
//
|
|
// YMMineNotificationTableViewCell.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/9/17.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class XPMineNotificationTableViewCell, XPMineNotificationItemModel;
|
|
@protocol XPMineNotificationTableViewCellDelegate <NSObject>
|
|
///开关
|
|
- (void)xPMineNotificationTableViewCell:(XPMineNotificationTableViewCell *)cell switchStatus:(BOOL)status;
|
|
|
|
@end
|
|
@interface XPMineNotificationTableViewCell : UITableViewCell
|
|
/** */
|
|
@property (nonatomic,weak) id<XPMineNotificationTableViewCellDelegate> delegate;
|
|
///
|
|
@property (nonatomic,strong) XPMineNotificationItemModel *itemModel;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|