No Description
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.

UADSBannerView.h 492B

12345678910111213141516171819
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. #import <UnityAds/UADSBannerViewDelegate.h>
  4. NS_ASSUME_NONNULL_BEGIN
  5. @interface UADSBannerView : UIView
  6. @property (nonatomic, readonly) CGSize size;
  7. @property (nonatomic, readwrite, nullable, weak) NSObject <UADSBannerViewDelegate> *delegate;
  8. @property (nonatomic, readonly) NSString *placementId;
  9. - (instancetype)initWithPlacementId: (NSString *)placementId size: (CGSize)size;
  10. - (void) load;
  11. @end
  12. NS_ASSUME_NONNULL_END