12 lines
235 B
Objective-C
12 lines
235 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface InsertAd : NSObject
|
|
+ (instancetype)sharedInstance;
|
|
- (void)initAd:(NSDictionary *)arguments;
|
|
- (void)showAd:(NSDictionary *)arguments;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|