Files
yinmeng-ios/xplan-ios/Main/Mine/View/Friend/XPMineFansViewController.h

30 lines
852 B
C
Raw Normal View History

//
// 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"
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
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;
/** 控制器 因为房间内聊天没有控制器去push 或者做其他的操作*/
@property (nonatomic, weak) UIViewController * mainController;
2022-06-27 20:04:54 +08:00
@end
NS_ASSUME_NONNULL_END