Files
peko-ios/YuMi/Modules/YMMine/View/Friend/XPMineFriendViewController.h
2025-03-21 16:19:07 +08:00

32 lines
1.0 KiB
Objective-C

//
// YMMineFriendViewController.h
// YUMI
//
// Created by YUMI on 2021/12/21.
//
#import "MvpViewController.h"
#import <JXCategoryView/JXCategoryListContainerView.h>
#import "YUMINNNN.h"
#import <JXPagingView/JXPagerView.h>
NS_ASSUME_NONNULL_BEGIN
@class XPMineFriendViewController, UserInfoModel;
@protocol XPMineFriendViewControllerDelegate <NSObject>
- (void)xPMineFriendViewController:(XPMineFriendViewController *)viewController didSelectItem:(UserInfoModel *)userInfo;
@end
@interface XPMineFriendViewController : MvpViewController<JXPagerViewListViewDelegate,JXCategoryListContentViewDelegate>
@property(nonatomic, assign) BOOL isFromMineTab;
///类型
@property (nonatomic,assign) ContactUseingType type;
///背景色是否为透明
@property (nonatomic,assign) BOOL isClearColor;
///代理
@property (nonatomic,weak) id<XPMineFriendViewControllerDelegate> delegate;
/** 控制器 因为房间内聊天没有控制器去push 或者做其他的操作*/
@property (nonatomic, weak) UIViewController * mainController;
@end
NS_ASSUME_NONNULL_END