36 lines
722 B
Objective-C
Executable File
36 lines
722 B
Objective-C
Executable File
//
|
|
// KSNativeAdRelatedView.h
|
|
// KSAdSDK
|
|
//
|
|
// Created by 徐志军 on 2019/10/16.
|
|
// Copyright © 2019 KuaiShou. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "KSNativeAd.h"
|
|
#import "KSVideoAdView.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface KSNativeAdRelatedView : NSObject
|
|
|
|
/**
|
|
Promotion label.Need to actively add to the view.
|
|
*/
|
|
@property (nonatomic, strong, readonly, nullable) UILabel *adLabel;
|
|
|
|
|
|
/**
|
|
Video ad view. Need to actively add to the view.
|
|
*/
|
|
@property (nonatomic, strong, readonly, nullable) KSVideoAdView *videoAdView;
|
|
|
|
/**
|
|
Refresh the data every time you get new datas in order to show ad perfectly.
|
|
*/
|
|
- (void)refreshData:(KSNativeAd *)nativeAd;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|