MessageNotiView.h 487 字节
//
//  MessageNotiView.h
//  DreamSleep
//
//  Created by peter on 2022/10/10.
//

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

@protocol MessageNotiViewDelegate <NSObject>
- (void)didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
@end

/// 消息通知view
@interface MessageNotiView : UITableView

@property (nonatomic, weak) id<MessageNotiViewDelegate> messageDelegate;

- (instancetype)initWithDelegate:(id<MessageNotiViewDelegate>)messageDelegate;

@end

NS_ASSUME_NONNULL_END