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.
19 lines
468 B
19 lines
468 B
#import <Foundation/Foundation.h> |
|
#import <UIKit/UIKit.h> |
|
#import "UADSBannerViewDelegate.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface UADSBannerView : UIView |
|
|
|
@property(nonatomic, readonly) CGSize size; |
|
@property(nonatomic, readwrite, nullable, weak) NSObject <UADSBannerViewDelegate> *delegate; |
|
@property(nonatomic, readonly) NSString *placementId; |
|
|
|
-(instancetype)initWithPlacementId:(NSString *)placementId size:(CGSize)size; |
|
|
|
-(void)load; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|