Files
peko-ios/YuMi/Modules/YMLogin/View/NewLogin/XPLoginAreaTableViewCell.h
2023-12-07 19:44:52 +08:00

25 lines
485 B
Objective-C

//
// XPLoginAreaTableViewCell.h
// YuMi
//
// Created by YuMi on 2023/6/25.
//
#import <UIKit/UIKit.h>
@class LoginAreaModel;
@protocol XPLoginAreaTableViewCellDelegate <NSObject>
-(void)didSelectModel:(LoginAreaModel *_Nullable)model;
@end
NS_ASSUME_NONNULL_BEGIN
@interface XPLoginAreaTableViewCell : UITableViewCell
@property (nonatomic,strong) LoginAreaModel *areaModel;
@property(nonatomic,weak) id<XPLoginAreaTableViewCellDelegate>delegate;
@end
NS_ASSUME_NONNULL_END