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