36 lines
937 B
Objective-C
Executable File
36 lines
937 B
Objective-C
Executable File
//
|
|
// WindNativeAd.h
|
|
// WindSDK
|
|
//
|
|
// Created by Codi on 2021/7/14.
|
|
// Copyright © 2021 Codi. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
#import <WindSDK/WindMediationNativeAd.h>
|
|
|
|
|
|
@interface WindNativeAd : NSObject
|
|
|
|
/// Typed access to the ad title.
|
|
@property (nonatomic, copy, readonly) NSString *title;
|
|
|
|
/// Typed access to the body text, usually a longer description of the ad.
|
|
@property (nonatomic, copy, readonly) NSString *desc;
|
|
|
|
/// Typed access to the ad icon.
|
|
@property (nonatomic, copy, readonly) NSString *iconUrl;
|
|
|
|
/// Typed access to the call to action phrase of the ad.
|
|
@property (nonatomic, copy, readonly) NSString *callToAction;
|
|
|
|
/// Typed access to the ad star rating.
|
|
@property (nonatomic, assign, readonly) double rating;
|
|
|
|
@property (nonatomic, assign, readonly) WindFeedADMode feedADMode;
|
|
|
|
- (instancetype)initWithMediatedAd:(id<WindMediationNativeAd>)mediatedAd;
|
|
|
|
@end
|