TestNativeAdView.h 815 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // TestNativeAdView.h
  3. // NativeAdvancedExample
  4. //
  5. // Created by fq on 2020/12/28.
  6. // Copyright © 2020 Google. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <GoogleMobileAds/GoogleMobileAds.h>
  10. @interface TestNativeAdView : UIView
  11. @property(nonatomic, strong, nullable) GADUnifiedNativeAd *nativeAd;
  12. @property (weak, nonatomic) IBOutlet UIImageView *iconView;
  13. @property (weak, nonatomic) IBOutlet UILabel *headlineView;
  14. @property (weak, nonatomic) IBOutlet UILabel *advertiserView;
  15. @property (weak, nonatomic) IBOutlet UILabel *bodyView;
  16. @property (weak, nonatomic) IBOutlet GADMediaView *mediaView;
  17. @property (weak, nonatomic) IBOutlet UIButton *callToActionView;
  18. @property (weak, nonatomic) IBOutlet UILabel *storeView;
  19. @property (weak, nonatomic) IBOutlet UILabel *priceView;
  20. @end