YOUPAIZYAdvertWindow.h 697 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // YOUPAIZYAdvertWindow.h
  3. // VQU
  4. //
  5. // Created by Elaine on 2020/10/14.
  6. // Copyright © 2020 leo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ZYBaseWindow.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol ZYAdvertWindowDelegate <NSObject>
  12. -(void)youpaifclickAdverImage:(NSInteger)link_type andUrl:(NSString *)link_url;
  13. @end
  14. @interface YOUPAIZYAdvertWindow : ZYBaseWindow
  15. //@property(nonatomic,assign)CGFloat vWith,vHeight;
  16. @property(nonatomic,strong)NSString *youpaipimageurl;
  17. @property(nonatomic,assign)NSInteger youpaiplink_type;
  18. @property(nonatomic,strong)NSString *youpaiplink_url;
  19. @property(nonatomic,weak)id<ZYAdvertWindowDelegate>youpaipdelegate;
  20. @end
  21. NS_ASSUME_NONNULL_END