123456789101112131415161718192021222324252627 |
- //
- // YOUPAIZYEditUserShowAlertWindow.h
- // VQU
- //
- // Created by 肖浩然的mac on 2021/7/15.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import "ZYBaseWindow.h"
- @class YOUPAIZYEditUserShowAlertWindow;
- NS_ASSUME_NONNULL_BEGIN
- @protocol ZYEditUserShowAlertWindowDelegate <NSObject>
- -(void)youpaifimSessionMoreWindowAction:(YOUPAIZYEditUserShowAlertWindow*)alert
- type:(NSString *)type
- tag:(NSInteger)tag
- andUserId:(NSString *)user_id;
- @end
- @interface YOUPAIZYEditUserShowAlertWindow : ZYBaseWindow
- @property(nonatomic,strong) NSString *youpaipuser_id;
- @property(nonatomic,strong) NSArray *youpaipbtntitleArr;
- @property(nonatomic,strong) NSDictionary * info; // 自定义信息
- @property(nonatomic,weak)id<ZYEditUserShowAlertWindowDelegate>youpaipdelegate;
- @end
- NS_ASSUME_NONNULL_END
|