123456789101112131415161718192021222324252627282930 |
- //
- // YOUPAIZYAdvertWindow.h
- // VQU
- //
- // Created by Elaine on 2020/10/14.
- // Copyright © 2020 leo. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ZYBaseWindow.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol ZYAdvertWindowDelegate <NSObject>
- -(void)youpaifclickAdverImage:(NSInteger)link_type andUrl:(NSString *)link_url;
- @end
- @interface YOUPAIZYAdvertWindow : ZYBaseWindow
- //@property(nonatomic,assign)CGFloat vWith,vHeight;
- @property(nonatomic,strong)NSString *youpaipimageurl;
- @property(nonatomic,assign)NSInteger youpaiplink_type;
- @property(nonatomic,strong)NSString *youpaiplink_url;
- @property(nonatomic,weak)id<ZYAdvertWindowDelegate>youpaipdelegate;
- @end
- NS_ASSUME_NONNULL_END
|