Files
yinmeng-ios/xplan-ios/Main/Home/View/Cell/XPHomeMenuTableViewCell.h
2022-03-04 19:54:17 +08:00

28 lines
619 B
Objective-C

//
// XPHomeMenuTableViewCell.h
// xplan-ios
//
// Created by 冯硕 on 2022/2/21.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class HomeMenuInfoModel, XPHomeMenuTableViewCell;
@protocol XPHomeMenuTableViewCellDelegate <NSObject>
///点击了某个菜单
- (void)xPHomeMenuTableViewCell:(XPHomeMenuTableViewCell *)view didClickMenuInfo:(HomeMenuInfoModel *)info;
@end
@interface XPHomeMenuTableViewCell : UITableViewCell
@property (nonatomic,strong) NSArray<HomeMenuInfoModel *> *menuList;
///代理
@property (nonatomic,weak) id<XPHomeMenuTableViewCellDelegate> delegate;
@end
NS_ASSUME_NONNULL_END