2021-12-21 18:10:33 +08:00
|
|
|
//
|
|
|
|
// XPMineFansViewController.h
|
|
|
|
// xplan-ios
|
|
|
|
//
|
|
|
|
// Created by 冯硕 on 2021/12/21.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "MvpViewController.h"
|
2022-05-29 19:07:08 +08:00
|
|
|
#import <JXCategoryView/JXCategoryListContainerView.h>
|
2022-06-27 20:04:54 +08:00
|
|
|
#import "XPEnum.h"
|
2021-12-21 18:10:33 +08:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
2022-06-27 20:04:54 +08:00
|
|
|
@class XPMineFansViewController, FansInfoModel;
|
|
|
|
@protocol XPMineFansViewControllerDelegate <NSObject>
|
|
|
|
|
|
|
|
- (void)xPMineFansViewController:(XPMineFansViewController *)view didSelectItem:(FansInfoModel *)userInfo;
|
|
|
|
|
|
|
|
@end
|
2021-12-21 18:10:33 +08:00
|
|
|
|
2022-05-29 19:07:08 +08:00
|
|
|
@interface XPMineFansViewController : MvpViewController<JXCategoryListContentViewDelegate>
|
2022-06-27 20:04:54 +08:00
|
|
|
///类型
|
|
|
|
@property (nonatomic,assign) ContactUseingType type;
|
|
|
|
///代理
|
|
|
|
@property (nonatomic,weak) id<XPMineFansViewControllerDelegate> delegate;
|
2022-09-14 19:14:09 +08:00
|
|
|
/** 控制器 因为房间内聊天没有控制器去push 或者做其他的操作*/
|
|
|
|
@property (nonatomic, weak) UIViewController * mainController;
|
2022-06-27 20:04:54 +08:00
|
|
|
|
2021-12-21 18:10:33 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|