YOUPAIZYEditUserShowAlertWindow.h 827 B

123456789101112131415161718192021222324252627
  1. //
  2. // YOUPAIZYEditUserShowAlertWindow.h
  3. // VQU
  4. //
  5. // Created by 肖浩然的mac on 2021/7/15.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import "ZYBaseWindow.h"
  9. @class YOUPAIZYEditUserShowAlertWindow;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol ZYEditUserShowAlertWindowDelegate <NSObject>
  12. -(void)youpaifimSessionMoreWindowAction:(YOUPAIZYEditUserShowAlertWindow*)alert
  13. type:(NSString *)type
  14. tag:(NSInteger)tag
  15. andUserId:(NSString *)user_id;
  16. @end
  17. @interface YOUPAIZYEditUserShowAlertWindow : ZYBaseWindow
  18. @property(nonatomic,strong) NSString *youpaipuser_id;
  19. @property(nonatomic,strong) NSArray *youpaipbtntitleArr;
  20. @property(nonatomic,strong) NSDictionary * info; // 自定义信息
  21. @property(nonatomic,weak)id<ZYEditUserShowAlertWindowDelegate>youpaipdelegate;
  22. @end
  23. NS_ASSUME_NONNULL_END