28 lines
874 B
Objective-C
28 lines
874 B
Objective-C
//
|
|
// XPMineFriendViewController.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/12/21.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
#import <JXCategoryView/JXCategoryListContainerView.h>
|
|
#import "XPEnum.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class XPMineFriendViewController, UserInfoModel;
|
|
@protocol XPMineFriendViewControllerDelegate <NSObject>
|
|
|
|
- (void)xPMineFriendViewController:(XPMineFriendViewController *)viewController didSelectItem:(UserInfoModel *)userInfo;
|
|
|
|
@end
|
|
@interface XPMineFriendViewController : MvpViewController<JXCategoryListContentViewDelegate>
|
|
///类型
|
|
@property (nonatomic,assign) ContactUseingType type;
|
|
///代理
|
|
@property (nonatomic,weak) id<XPMineFriendViewControllerDelegate> delegate;
|
|
/** 控制器 因为房间内聊天没有控制器去push 或者做其他的操作*/
|
|
@property (nonatomic, weak) UIViewController * mainController;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|