123456789101112131415161718192021222324252627 |
- //
- // YOUPAIZYIMSessionDetailWindow.h
- // VQU
- //
- // Created by Elaine on 2020/12/11.
- // Copyright © 2020 leo. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ZYBaseWindow.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol ZYIMSessionDetailWindowDelegate <NSObject>
- -(void)youpaifimSessionDetailWindowAction:(NSString *)type andSession:(NIMSession *)session;
- -(void)showUserVCWithSession:(NIMSession *)session;
- @end
- @interface YOUPAIZYIMSessionDetailWindow : ZYBaseWindow
- //@property(nonatomic,assign)CGFloat vWith,vHeight;
- @property(nonatomic,strong)NIMSession *youpaipsession;
- @property(nonatomic,weak)id<ZYIMSessionDetailWindowDelegate>youpaipdelegate;
- @end
- NS_ASSUME_NONNULL_END
|