27 lines
663 B
Objective-C
27 lines
663 B
Objective-C
//
|
|
// 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
|