You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
663 B
26 lines
663 B
// |
|
// TFAdvertisementManager.h |
|
// TFReader |
|
// |
|
// Created by 谢腾飞 on 2020/12/23. |
|
// Copyright © 2020 xtfei_2011@126.com. All rights reserved. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
#import "TFAdvertisementBasicView.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface TFAdvertisementManager : TFAdvertisementBasicView |
|
|
|
// 广告关闭时的回调 |
|
@property (nonatomic ,copy) void(^closeBlock)(void); |
|
// 广告当前时间戳 |
|
@property (nonatomic ,assign ,class) NSInteger adTimestamp; |
|
|
|
// 是否需要展示指定广告 |
|
+ (BOOL)whetherToLoadAdsWithAdvertisementType:(TFAdvertisementType)type advertisementPosition:(TFAdvertisementPosition)position; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|