25 lines
485 B
Objective-C
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
|