Skip to content

iAd iOS xcode13.0 beta1

Sebastien Pouliot edited this page Jun 14, 2021 · 3 revisions

iAd.framework

https://github.com/xamarin/xamarin-macios/pull/11906

diff -ruN /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADActionViewControllerInterface.h /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADActionViewControllerInterface.h
--- /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADActionViewControllerInterface.h	2021-03-16 08:47:43.000000000 -0400
+++ /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADActionViewControllerInterface.h	1969-12-31 19:00:00.000000000 -0500
@@ -1,28 +0,0 @@
-//
-//  ADActionViewControllerInterface.h
-//  iAd
-//
-
-#import <Foundation/Foundation.h>
-
-@class ADAdSpace;
-
-NS_DEPRECATED(10_14, 10_14, 8_0, 13_0)
-@protocol ADActionViewControllerInterface <NSObject>
-
-@property (nonatomic, readonly) BOOL readyForPresentation;
-@property (nonatomic, weak, readonly) ADAdSpace *adSpace;
-
-- (void)dismiss;
-
-- (void)clientApplicationDidEnterBackground;
-- (void)clientApplicationCancelledAction;
-
-@end
-
-NS_DEPRECATED(10_14, 10_14, 8_0, 13_0)
-@protocol ADActionViewControllerChildInterface <NSObject>
-
-- (void)actionViewControllerClosed;
-
-@end
diff -ruN /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADBannerView.h /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADBannerView.h
--- /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADBannerView.h	2021-03-16 08:47:43.000000000 -0400
+++ /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADBannerView.h	1969-12-31 19:00:00.000000000 -0500
@@ -1,268 +0,0 @@
-//
-//  ADBannerView.h
-//  iAd
-//
-//  Copyright 2010 Apple, Inc. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-
-NS_ASSUME_NONNULL_BEGIN
-
-#pragma clang system_header
-
-/*!
- * @const ADErrorDomain
- *
- * @discussion
- * Error domain for NSErrors passed to the following delegate methods:
- *
- *   • -[ADBannerViewDelegate bannerView:didFailToReceiveAdWithError:]
- *   • -[ADInterstitialAdDelegate interstitialAd:didFailWithError:]
- *
- */
-
-NS_DEPRECATED(10_14, 10_14, 4_1, 13_0)
-extern NSString * const ADErrorDomain;
-
-/*!
- * @enum ADError
- *
- * @const ADErrorUnknown
- * General errors that aren't covered by one of the more specific error reasons.
- *
- * @const ADErrorServerFailure
- * Unable to request ads and their resources from the iAd service.
- *
- * @const ADErrorInventoryUnavailable
- * No ads are available at the moment. Note that this error is *always* returned
- * to iPhone apps running in compatibility mode on iPad, since ads are not
- * supported in that configuration.
- *
- * @const ADErrorConfigurationError
- * There are iAd configuration issues that need to be resolved before ads can be
- * served. Generally, this means visiting ADC <http://developer.apple.com/>.
- *
- * @const ADErrorBannerVisibleWithoutContent
- * The banner is visible but had no ad. Generally, this means a banner was made
- * visible before the -bannerViewDidLoadAd: delegate method was called, or
- * remained visible after the -bannerView:didFailToReceiveAdWithError: delegate
- * method was called.
- *
- * @const ADErrorAdUnloaded
- * The ad being displayed in the banner was unloaded. Some examples of when this
- * might happen is when an ad expires, or when an ad is moved from a non-visible
- * banner to a visible banner.
- *
- * @const ADErrorLoadingThrottled
- * Unused.
- *
- * @const ADErrorApplicationInactive
- * Unused.
- *
- * @discussion
- * Error codes for NSErrors passed to the delegate via the
- * bannerView:didFailToReceiveAdWithError: delegate method.
- */
-typedef NS_ENUM(NSInteger, ADError) {
-#if __IPHONE_4_0 <= __IPHONE_OS_VERSION_MAX_ALLOWED
-    ADErrorUnknown = 0,
-    ADErrorServerFailure = 1,
-    ADErrorLoadingThrottled = 2,
-    ADErrorInventoryUnavailable = 3,
-#endif
-#if __IPHONE_4_1 <= __IPHONE_OS_VERSION_MAX_ALLOWED
-    ADErrorConfigurationError = 4,
-    ADErrorBannerVisibleWithoutContent = 5,
-#endif
-#if __IPHONE_4_3 <= __IPHONE_OS_VERSION_MAX_ALLOWED
-    ADErrorApplicationInactive = 6,
-#endif
-#if __IPHONE_6_0 <= __IPHONE_OS_VERSION_MAX_ALLOWED
-    ADErrorAdUnloaded = 7,
-#endif
-#if __IPHONE_9_3 <= __IPHONE_OS_VERSION_MAX_ALLOWED
-    ADErrorAssetLoadFailure = 8,
-#endif
-#if __IPHONE_10_3 <= __IPHONE_OS_VERSION_MAX_ALLOWED
-    ADErrorAdResponseValidateFailure = 9,
-    ADErrorAdAssetLoadPending = 10
-#endif
-} NS_ENUM_DEPRECATED(10_14, 10_14, 4_0, 10_0);
-
-/*!
- * @enum ADAdType
- *
- * @const ADAdTypeBanner A device-width banner ad. The banner height varies with
- * device type and orientation:
- *
- *   • On iPhone; portrait = DEVICE_WIDTH × 50px, landscape = DEVICE_WIDTH × 32px
- *   • On iPad; both portrait & landscape = DEVICE_WIDTH × 66px
- *
- * @const ADAdTypeMediumRectangle An 320 × 250px ad, based on the International
- * Advertising Bureau's "Medium Rectangle" Interactive Marketing Unit.
- *
- * @discussion
- * Ad types that can be passed to -[ADBannerView -initWithAdType:].
- */
-typedef NS_ENUM(NSInteger, ADAdType) {
-    ADAdTypeBanner,
-    ADAdTypeMediumRectangle
-} NS_ENUM_DEPRECATED(10_14, 10_14, 6_0, 10_0);
-
-@protocol ADBannerViewDelegate;
-
-/*!
- * @class ADBannerView
- *
- * @discussion
- * Provides a view for displaying iAds in an application. iAds are automatically
- * loaded, presented, and refreshed. When a banner view is tapped, the iAd will
- * begin its action. In most cases, the action displays a fullscreen interactive
- * iAd.
- *
- * Note: ADBannerViews must be added to a view hierarchy managed by a
- * UIViewController. If view controller containment is being used, the controller
- * managing the banner view must be correctly configured to ensure banner action
- * presentation works correctly.
- */
-NS_CLASS_DEPRECATED(10_14, 10_14, 4_0, 10_0)
-@interface ADBannerView : UIView
-
-/*!
- * @method initWithAdType:
- *
- * @discussion
- * Initialize the view with a specific ad type. The ad type cannot be changed
- * after initialization.
- */
-- (nullable instancetype)initWithAdType:(ADAdType)type NS_AVAILABLE_IOS(6_0);
-
-/*!
- * @property adType
- *
- * @return
- * The banner view's ad type.
- */
-@property (nonatomic, readonly) ADAdType adType NS_AVAILABLE_IOS(6_0);
-
-/*!
- * @property delegate
- *
- * @discussion
- * The banner view delegate is notified when events related to the banner view
- * and current ad occur, such as when a new ad is loaded, when errors occur
- * while fetching ads, or when banner actions begin and end.
- *
- * On iOS 5 and later, this property is a weak reference and cannot be used with
- * objects that modify the behavior of release or retain.
- */
-@property (nullable, nonatomic, weak) id<ADBannerViewDelegate> delegate;
-
-/*!
- * @property bannerLoaded
- *
- * @return
- * YES if an ad is currently loaded, NO otherwise.
- */
-@property (nonatomic, readonly, getter=isBannerLoaded) BOOL bannerLoaded;
-
-/*!
- * @property bannerViewActionInProgress
- *
- * @return
- * YES if the user is currently engaged with a fullscreen interactive ad.
- */
-@property (nonatomic, readonly, getter=isBannerViewActionInProgress) BOOL bannerViewActionInProgress;
-
-/*!
- * @method cancelBannerViewAction
- *
- * @discussion
- * Cancels the current in-progress banner view action. This should only be used
- * in cases where the user's attention is required immediately.
- */
-- (void)cancelBannerViewAction;
-
-/*!
- * @property advertisingSection
- *
- * @discussion
- * Reserved for future use.
- */
-@property (nullable, nonatomic, copy) NSString *advertisingSection;
-
-@end
-
-/*!
- * @protocol ADBannerViewDelegate
- */
-NS_DEPRECATED(10_14, 10_14, 4_1, 13_0)
-@protocol ADBannerViewDelegate <NSObject>
-@optional
-
-/*!
- * @method bannerViewWillLoadAd:
- *
- * @discussion
- * Called when a banner has confirmation that an ad will be presented, but
- * before the resources necessary for presentation have loaded.
- */
-- (void)bannerViewWillLoadAd:(ADBannerView *)banner  NS_AVAILABLE_IOS(5_0);
-
-/*!
- * @method bannerViewDidLoadAd:
- *
- * @discussion
- * Called each time a banner loads a new ad. Once a banner has loaded an ad, it
- * will display it until another ad is available.
- *
- * It's generally recommended to show the banner view when this method is called,
- * and hide it again when bannerView:didFailToReceiveAdWithError: is called.
- */
-- (void)bannerViewDidLoadAd:(ADBannerView *)banner;
-
-/*!
- * @method bannerView:didFailToReceiveAdWithError:
- *
- * @discussion
- * Called when an error has occurred while attempting to get ad content. If the
- * banner is being displayed when an error occurs, it should be hidden
- * to prevent display of a banner view with no ad content.
- *
- * @see ADError for a list of possible error codes.
- */
-- (void)bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error;
-
-/*!
- * @method bannerViewActionShouldBegin:willLeaveApplication:
- *
- * Called when the user taps on the banner and some action is to be taken.
- * Actions either display full screen content modally, or take the user to a
- * different application.
- *
- * The delegate may return NO to block the action from taking place, but this
- * should be avoided if possible because most ads pay significantly more when
- * the action takes place and, over the longer term, repeatedly blocking actions
- * will decrease the ad inventory available to the application.
- *
- * Applications should reduce their own activity while the advertisement's action
- * executes.
- */
-- (BOOL)bannerViewActionShouldBegin:(ADBannerView *)banner willLeaveApplication:(BOOL)willLeave;
-
-/*!
- * @method bannerViewActionDidFinish:
- *
- * Called when a modal action has completed and control is returned to the
- * application. Games, media playback, and other activities that were paused in
- * bannerViewActionShouldBegin:willLeaveApplication: should resume at this point.
- */
-- (void)bannerViewActionDidFinish:(ADBannerView *)banner;
-
-@end
-
-NS_DEPRECATED(10_14, 10_14, 12_0, 13_0)
-CGSize ADClampedBannerSize(CGSize size);
-
-NS_ASSUME_NONNULL_END
diff -ruN /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADBannerView_Deprecated.h /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADBannerView_Deprecated.h
--- /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADBannerView_Deprecated.h	2021-03-16 08:47:42.000000000 -0400
+++ /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADBannerView_Deprecated.h	1969-12-31 19:00:00.000000000 -0500
@@ -1,44 +0,0 @@
-//
-//  ADBannerView_Deprecated.h
-//  iAd
-//
-//  Copyright 2012 Apple, Inc. All rights reserved.
-//
-
-#import <iAd/ADBannerView.h>
-
-NS_ASSUME_NONNULL_BEGIN
-
-/*!
- * @category ADBannerView (Deprecated)
- *
- * @discussion
- * These banner view resizing APIs have been deprecated and should no longer be
- * used when targeting iOS 6.0 or later.
- *
- * To resize a banner view on iOS 6.0 or later, call -sizeThatFits: on the banner
- * view, specifying the bounds of the view that contains your banner, and use the
- * returned size to resize the banner view. Based on the size you provide, the
- * banner will be sized to the correct width and height for the current device
- * type and orientation, as per the ADAdTypeBanner documentation.
- *
- * A full example of this - including how to handle resizing on devices running
- * older versions of iOS - can be found in the 'iAdSuite' sample project on the
- * ADC website <http://developer.apple.com>.
- */
-@interface ADBannerView (Deprecated)
-
-@property (nullable, nonatomic, copy) NSSet *requiredContentSizeIdentifiers NS_DEPRECATED(10_14, 10_14, 4_0, 6_0);
-
-@property (nullable, nonatomic, copy) NSString *currentContentSizeIdentifier NS_DEPRECATED(10_14, 10_14, 4_0, 6_0);
-
-+ (CGSize)sizeFromBannerContentSizeIdentifier:(NSString *)contentSizeIdentifier NS_DEPRECATED(10_14, 10_14, 4_0, 6_0);
-
-@end
-
-extern NSString * const ADBannerContentSizeIdentifier320x50 NS_DEPRECATED(10_14, 10_14, 4_0, 4_2);
-extern NSString * const ADBannerContentSizeIdentifier480x32 NS_DEPRECATED(10_14, 10_14, 4_0, 4_2);
-extern NSString * const ADBannerContentSizeIdentifierPortrait NS_DEPRECATED(10_14, 10_14, 4_2, 6_0);
-extern NSString * const ADBannerContentSizeIdentifierLandscape NS_DEPRECATED(10_14, 10_14, 4_2, 6_0);
-
-NS_ASSUME_NONNULL_END
diff -ruN /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADClient.h /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADClient.h
--- /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADClient.h	2021-03-16 08:44:50.000000000 -0400
+++ /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADClient.h	2021-06-02 11:08:40.000000000 -0400
@@ -1,10 +1,8 @@
 //
 //  ADClient.h
-//  iAd
 //
 //  Copyright 2013 Apple, Inc. All rights reserved.
 //
-//
 
 #import <Foundation/Foundation.h>
 
@@ -20,7 +18,7 @@
  *   • -[[ADClient SharedClient] requestAttributionDetailsWithBlock]
  *
  */
-extern NSString * const ADClientErrorDomain NS_AVAILABLE(10_14, 7_1);
+extern NSString * const ADClientErrorDomain NS_DEPRECATED(10_14, 7_1, 12_0, 15_0);
 
 /*!
  * @enum ADClientError
@@ -65,7 +63,7 @@
     ADClientErrorRequestServerError = 5,
     ADClientErrorRequestNetworkError = 6,
     ADClientErrorUnsupportedPlatform = 7
-} NS_ENUM_AVAILABLE(10_14, 7_1);
+} NS_ENUM_DEPRECATED(10_14, 7_1, 12_0, 15_0);
 
 NS_DEPRECATED(10_14, 11_3, 7_1, 14_5, "This has been replaced by functionality in AdServices.framework's AAAttribution class.")
 @interface ADClient : NSObject
@@ -74,61 +72,26 @@
  * @method sharedClient
  *
  * @return
- * The shared singleton instance of ADClient.
+ * An instance of ADClient.
  *
  * @discussion
- * ADClient is a singleton object.
+ * This is no longer a singleton and returns a new instance for every call.
  */
 + (ADClient *)sharedClient NS_DEPRECATED(10_14, 11_3, 7_1, 14_5, "This has been replaced by functionality in AdServices.framework's AAAttribution class.");
 
 /*!
- * @method determineAppInstallationAttributionWithCompletionHandler:
- *
- * @param completionHandler
- * A block accepting one BOOL argument that will be called when app installation
- * attribution status has been determined. If this installation of the app is
- * attributed to an iAd impression, the completion handler will be called with
- * YES. Otherwise, or if the user has enabled Limit Ad Tracking, the completion
- * handler will be called with NO. For iOS 14 and later, the completion
- * handler will always be called with NO.
- *
- * The handler will be called on an arbitrary queue.
- *
- * @discussion
- * Provides a way for an app to determine if it was installed by the user in
- * response to seeing an iAd for the app.
- */
-
-- (void)determineAppInstallationAttributionWithCompletionHandler:(void (^)(BOOL appInstallationWasAttributedToiAd))completionHandler NS_DEPRECATED(10_14, 10_14, 7_1, 9_0, "This has been replaced by functionality in AdServices.framework's AAAttribution class.");
-
-/*!
- * @method lookupAdConversionDetails:
- *
- * @param completionHandler
- * This method is deprecated.
- * A block will be called with iAdImpressionDate = nil
- *
- * The handler will be called on an arbitrary queue.
- *
- * @discussion
- * Provides a way for an app to determine when an iAd was shown to the user
- * which resulted in the user's purchase of the app.
- */
-- (void)lookupAdConversionDetails:(void (^)(NSDate * _Nullable appPurchaseDate, NSDate * _Nullable iAdImpressionDate))completionHandler NS_DEPRECATED(10_14, 10_14, 8_0, 9_0, "This has been replaced by functionality in AdServices.framework's AAAttribution class.");
-
-/*!
  * @method requestAttributionDetailsWithBlock:
  *
  * @param completionHandler
  * A block which will be called with details related to the attribution status of the app.
  * The attributionDetails dictionary will contain purchase and impression dates
- * as well as other specific campaign related information provided by iAd. If the attributionDetails
+ * as well as other specific campaign related information. If the attributionDetails
  * dictionary is nil, an NSError is passed with an ADClientError enum.
  *
  * The handler will be called on an arbitrary queue.
  *
  * @discussion
- * Provides a way for an app to determine when an iAd was shown to the user
+ * Provides a way for an app to determine when an an was shown to the user
  * which resulted in the user's purchase of the app.
  */
 - (void)requestAttributionDetailsWithBlock:(void (^)(NSDictionary<NSString *, NSObject *> * _Nullable attributionDetails, NSError * _Nullable error))completionHandler NS_DEPRECATED(10_14, 11_3, 9_0, 14_5, "This has been replaced by functionality in AdServices.framework's AAAttribution class.");
@@ -137,22 +100,16 @@
  * @method addClientToSegments:replaceExisting:
  *
  * @param segmentIdentifiers
- * Array of NSString objects identifying which segments to add the client to.
- * May be nil.
+ * This parameter is unused.
  *
  * @param replaceExisting
- * If YES, the client will be removed from all existing segments prior to
- * being added to the specified segments.
+ * This parameter is unused.
  *
  * @discussion
- * Enables apps to add users to custom segments owned and defined by the calling
- * application.  If Limit Ad Tracking is enabled on the device, this method will
- * have no effect. For iOS 14 and later, and macOS 11 and later, this method will
- * have no effect.
+ * This method does nothing and immediately returns.
  */
 - (void)addClientToSegments:(NSArray<NSString *> *)segmentIdentifiers replaceExisting:(BOOL)replaceExisting NS_DEPRECATED(10_14, 10_14, 8_0, 13_0);
 
 @end
 
 NS_ASSUME_NONNULL_END
-
diff -ruN /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADCommonDefinitions.h /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADCommonDefinitions.h
--- /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADCommonDefinitions.h	2021-03-16 08:41:08.000000000 -0400
+++ /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADCommonDefinitions.h	1969-12-31 19:00:00.000000000 -0500
@@ -1,34 +0,0 @@
-//
-//  ADCommonDefinitions.h
-//  iAd
-//
-
-#ifndef ADCommonDefinitions_h
-#define ADCommonDefinitions_h
-
-#import <Availability.h>
-
-#pragma warning "ADCommonDefinitions.h is deprecated and will be removed in a future release. Do not include this header."
-
-#if TARGET_OS_IOS && !TARGET_OS_MACCATALYST && (__IPHONE_OS_VERSION_MAX_ALLOWED <= __IPHONE_13_0)
-
-#import <UIKit/UIKit.h>
-
-#define IS_IPAD (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
-#define IS_IPHONE (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
-#define IS_RETINA ([[UIScreen mainScreen] scale] >= 2.0)
-
-#define SCREEN_WIDTH ([[UIScreen mainScreen] bounds].size.width)
-#define SCREEN_HEIGHT ([[UIScreen mainScreen] bounds].size.height)
-#define SCREEN_MAX_LENGTH (MAX(SCREEN_WIDTH, SCREEN_HEIGHT))
-#define SCREEN_MIN_LENGTH (MIN(SCREEN_WIDTH, SCREEN_HEIGHT))
-
-#define IS_IPHONE_4 (IS_IPHONE && SCREEN_MAX_LENGTH < 568.0)
-#define IS_IPHONE_5_OR_SE (IS_IPHONE && SCREEN_MAX_LENGTH == 568.0)
-#define IS_IPHONE_6_OR_7_OR_8 (IS_IPHONE && SCREEN_MAX_LENGTH == 667.0)
-#define IS_IPHONE_6P_OR_7P_OR_8P (IS_IPHONE && SCREEN_MAX_LENGTH == 736.0)
-#define IS_IPHONE_X (IS_IPHONE && SCREEN_MAX_LENGTH == 812.0)
-
-#endif /* TARGET_OS_IOS ... */
-
-#endif /* ADCommonDefinitions_h */
diff -ruN /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADInterstitialAd.h /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADInterstitialAd.h
--- /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADInterstitialAd.h	2021-03-16 09:56:06.000000000 -0400
+++ /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/ADInterstitialAd.h	1969-12-31 19:00:00.000000000 -0500
@@ -1,215 +0,0 @@
-//
-//  ADInterstitialAd.h
-//  iAd
-//
-//  Copyright 2011 Apple Inc. All rights reserved.
-//
-
-#import <Foundation/Foundation.h>
-#import <iAd/ADBannerView.h>
-
-NS_ASSUME_NONNULL_BEGIN
-
-#pragma clang system_header
-
-NS_CLASS_DEPRECATED(10_14, 10_14, 4_3, 10_0)
-@protocol ADInterstitialAdDelegate;
-
-/*!
- * ADInterstitialAd is a full screen advertisement, available on iPad since
- * iOS 4.3, and on iPhone since iOS 7.0.
- *
- * There are three ways to display an ADInterstitialAd:
- *
- *   • By providing a container view and calling -presentInView:
- *   • By providing a view controller and calling -presentFromViewController:
- *   • Indirectly, by setting the interstitial presentation policy on a view
- *     controller to Automatic or Manual (via -[UIViewController setInterstitialPresentationPolicy:]),
- *     and letting the framework manage presentation.
- *
- * An ADInterstitialAd should not be presented until it has loaded content. This
- * is indicated via the -interstitialAdDidLoad: delegate method, and can also be
- * queried via the loaded property. If the interstitial ad is presented when
- * loaded=NO, an exception will be thrown.
- *
- * Note that using interstitial ads on iPhones running iOS < 7.0 will cause an
- * exception to be thrown.
- */
-
-NS_CLASS_DEPRECATED(10_14, 10_14, 4_3, 10_0)
-@interface ADInterstitialAd : NSObject
-
-/*!
- * @property delegate
- *
- * @discussion
- * The interstitial ad delegate is notified when it has loaded, when errors
- * occur in getting ads, when actions begin and end, and when it has unloaded.
- *
- * On iOS 5 and later, this property is a weak reference and cannot be used with
- * objects that modify the behavior of release or retain.
- */
-@property (nullable, nonatomic, weak) id<ADInterstitialAdDelegate> delegate;
-
-/*!
- * @property loaded
- *
- * @return
- * YES if an ad is loaded, NO otherwise. This property should always be checked
- * before the interstitial ad is presented.
- */
-@property (nonatomic, readonly, getter=isLoaded) BOOL loaded;
-
-/*!
- * @property actionInProgress
- *
- * @discussion
- * Actions display full screen content in a modal session. Use this property to
- * determine if such an action is currently in progress.
- */
-@property (nonatomic, readonly, getter=isActionInProgress) BOOL actionInProgress;
-
-/*!
- * @property cancelAction
- *
- * @discussion
- * Cancels the current in-progress action. This should only be used in cases
- * where the user's attention is required immediately. If this method is called,
- * -interstitialAdActionDidFinish: will not be called.
- */
-- (void)cancelAction;
-
-/*
- * @method presentInView:
- *
- * @discussion
- * This method should be used to display the interstitial in a view hierarchy.
- * The view hierarchy must be managed by a view controller and the size of the
- * container view must fit the following constraints:
- *
- *   • Width must be DEVICE_WIDTH for the current orientation.
- *   • Height must be at least (DEVICE_HEIGHT - STATUS_BAR_HEIGHT - NAVIGATION_BAR_HEIGHT - TAB_BAR_HEIGHT).
- *   • Height must not exceed DEVICE_HEIGHT
- *
- * @throws NSInternalInconsistencyException
- * If the container view is not already in a view controller's managed hierarchy,
- * an exception will be thrown.
- *
- * @throws NSInternalInconsistencyException
- * If the interstitial has not loaded at the time this method is invoked, an
- * exception will be thrown.
- *
- * @return
- * YES if the interstitial could be presented, NO otherwise.
- */
-- (BOOL)presentInView:(UIView *)containerView;
-
-/*!
- * @method presentFromViewController:
- *
- * @discussion
- * As of iOS 7.0, the interstitial ad presentation APIs on UIViewController
- * should be used instead of managing your own ADInterstitialAd and presenting
- * it via the presentFromViewController: API.
- *
- * On iOS < 7.0, this method should be used to present the interstitial ad in a
- * non-paging UI, such as a transition or at the end of a game level. When this
- * API is used, the framework will manage how the interstitial is displayed and
- * what happens when the user dismisses it.
- *
- * User dismissal of either the interstitial or the ad unit to which it is
- * linked will restore control to the application immediately.
- */
-- (void)presentFromViewController:(UIViewController *)viewController;
-
-@end
-
-/*!
- * @protocol ADInterstitialAdDelegate
- */
-
-NS_CLASS_DEPRECATED(10_14, 10_14, 4_3, 10_0)
-@protocol ADInterstitialAdDelegate <NSObject>
-
-/*!
- * @method interstitialAdDidUnload:
- *
- * @discussion
- * When this method is invoked, if the application is using -presentInView:, the
- * content will be unloaded from the container shortly after this method is
- * called and no new content will be loaded. This may occur either as a result
- * of user actions or if the ad content has expired.
- *
- * In the case of an interstitial presented via -presentInView:, the layout of
- * the app should be updated to reflect that an ad is no longer visible. e.g.
- * by removing the view used for presentation and replacing it with another view.
- */
-- (void)interstitialAdDidUnload:(ADInterstitialAd *)interstitialAd;
-
-/*!
- * @method interstitialAd:didFailWithError:
- *
- * @discussion
- * Called when an error has occurred attempting to get ad content.
- *
- * @see ADError for a list of possible error codes.
- */
-- (void)interstitialAd:(ADInterstitialAd *)interstitialAd didFailWithError:(NSError *)error;
-
-@optional
-
-/*!
- * @method interstitialAdWillLoad:
- *
- * @discussion
- * Called when the interstitial has confirmation that an ad will be presented,
- * but before the ad has loaded resources necessary for presentation.
- */
-- (void)interstitialAdWillLoad:(ADInterstitialAd *)interstitialAd NS_AVAILABLE_IOS(5_0);
-
-/*!
- * @method interstitialAdDidLoad:
- *
- * @discussion
- * Called when the interstitial ad has finished loading ad content. The delegate
- * should implement this method so it knows when the interstitial ad is ready to
- * be presented.
- */
-- (void)interstitialAdDidLoad:(ADInterstitialAd *)interstitialAd;
-
-/*!
- * @method interstitialAdActionShouldBegin:willLeaveApplication:
- *
- * @discussion
- * Called when the user chooses to interact with the interstitial ad.
- *
- * The delegate may return NO to block the action from taking place, but this
- * should be avoided if possible because most ads pay significantly more when
- * the action takes place and, over the longer term, repeatedly blocking actions
- * will decrease the ad inventory available to the application.
- *
- * Applications should reduce their own activity while the advertisement's action
- * executes.
- */
-- (BOOL)interstitialAdActionShouldBegin:(ADInterstitialAd *)interstitialAd willLeaveApplication:(BOOL)willLeave;
-
-/*!
- * @method interstitialAdActionDidFinish:
- * This message is sent when the action has completed and control is returned to
- * the application. Games, media playback, and other activities that were paused
- * in response to the beginning of the action should resume at this point.
- */
-- (void)interstitialAdActionDidFinish:(ADInterstitialAd *)interstitialAd;
-
-@end
-
-NS_CLASS_DEPRECATED(10_14, 10_14, 12_0, 13_0)
-@interface ADInterstitialAdPresentationViewController : UIViewController
-
-- (id)initForInterstitialAd:(ADInterstitialAd *)interstitialAd;
-- (BOOL)shouldTestVisibilityAtPoint:(CGPoint)point;
-
-@end
-
-NS_ASSUME_NONNULL_END
-
diff -ruN /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/AVPlayerViewController_iAdPreroll.h /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/AVPlayerViewController_iAdPreroll.h
--- /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/AVPlayerViewController_iAdPreroll.h	2021-03-16 08:47:42.000000000 -0400
+++ /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/AVPlayerViewController_iAdPreroll.h	1969-12-31 19:00:00.000000000 -0500
@@ -1,56 +0,0 @@
-//
-//  AVPlayerViewController_iAdPreroll.h
-//  iAd
-//
-//  Copyright 2012 Apple, Inc. All rights reserved.
-//
-
-#include <TargetConditionals.h>
-#if TARGET_OS_IOS
-#import <AVKit/AVPlayerViewController.h>
-
-NS_CLASS_DEPRECATED(10_14, 10_14, 8_0, 13_0) @interface AVPlayerViewController (iAdPreroll)
-
-NS_ASSUME_NONNULL_BEGIN
-
-/*!
- * @method +preparePrerollAds
- *
- * @discussion
- * Inform iAd that the application intends to use AVPlayerViewController's
- * -playPrerollAdWithCompletionHandler: API. Ad metadata will be fetched eagerly,
- * increasing the likelihood of an ad being available when first requested.
- */
-+ (void)preparePrerollAds NS_AVAILABLE_IOS(8_0);
-
-/*!
- * @method -playPrerollAdWithCompletionHandler:
- *
- * @discussion
- * Request playback of a pre-roll video iAd.
- *
- * If -[AVPlayerViewController player] begins playing during a pre-roll ad, the
- * video ad will stop immediately.
- *
- * The completion handler's error argument will be non-nil if the pre-roll ad
- * could not be played. Errors can occur for a number of reasons, such as lack
- * of ad inventory, exceeding the maximum pre-roll ad playback frequency, iAd
- * account configuration issues, and media playback issues. See ADError for an
- * exhaustive list of possible errors.
- *
- * Passing nil as the completion handler is an error and will throw an exception.
- */
-- (void)playPrerollAdWithCompletionHandler:(void (^)(NSError * _Nullable error))completionHandler NS_AVAILABLE_IOS(8_0);
-
-/*!
- * @method -cancelPreroll
- *
- * @discussion
- * Cancel pre-roll video ad playback.
- */
-- (void)cancelPreroll NS_AVAILABLE_IOS(8_0);
-
-@end
-
-NS_ASSUME_NONNULL_END
-#endif
diff -ruN /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/UIViewControlleriAdAdditions.h /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/UIViewControlleriAdAdditions.h
--- /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/UIViewControlleriAdAdditions.h	2021-03-16 09:56:06.000000000 -0400
+++ /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/UIViewControlleriAdAdditions.h	1969-12-31 19:00:00.000000000 -0500
@@ -1,153 +0,0 @@
-//
-//  UIViewControlleriAdAdditions.h
-//  iAd
-//
-//  Copyright 2012 Apple, Inc. All rights reserved.
-//
-//
-
-#import <UIKit/UIKit.h>
-
-NS_ASSUME_NONNULL_BEGIN
-
-#pragma clang system_header
-
-/*!
- * @enum ADInterstitialPresentationPolicy
- *
- * @constant ADInterstitialPresentationPolicyNone Default policy - this is effectively
- * the same as the Manual policy except that setting the Manual policy will trigger
- * the +prepareInterstitialAds logic if needed.
- *
- * @constant ADInterstitialPresentationPolicyAutomatic Automatic policy - the framework
- * determines when an interstitial will be presented.
- *
- * @constant ADInterstitialPresentationPolicyManual Manual policy - the application
- * determines when an interstitial should be presented and calls an API from the
- * iAdAdditions category.
- *
- * @discussion
- * Policy options governing how and when interstitial ads may be presented from
- * a given view controller.
- */
-typedef NS_ENUM(NSInteger, ADInterstitialPresentationPolicy) {
-    ADInterstitialPresentationPolicyNone = 0,
-    ADInterstitialPresentationPolicyAutomatic,
-    ADInterstitialPresentationPolicyManual
-}  NS_ENUM_DEPRECATED(10_14, 10_14, 7_0, 10_0);
-
-/*!
- * @category UIViewController (iAdAdditions)
- *
- * @discussion
- * This category on UIViewController provides an interface for configuring the kind
- * of ads that should be shown with the view controller's content. Two types of
- * ads may be shown - banners and interstitials. Banner ads will be displayed below
- * the content which will be resized appropriately based on the size of the banner.
- * Interstitials can be displayed automatically or upon request. Automatic display
- * of interstitials will be tied to the appearance of the view, with the frequency
- * of presentation managed by the framework. On-request display of interstitials
- * is subject to similar internal constraints.
-*/
-@interface UIViewController (iAdAdditions)
-
-/*!
- * @method prepareInterstitials
- *
- * @discussion
- * Ads involve network requests, so if an application needs to use interstitial
- * ads and wants to ensure early availability, this method can be called to trigger
- * a prefetch. If this method is not called, the first fetch will occur when a
- * view controller's interstitialPresentationPolicy is set to something other
- * than ADInterstitialPresentationPolicyNone.
- */
-+ (void)prepareInterstitialAds NS_DEPRECATED(10_14, 10_14, 7_0, 10_0);
-
-/*!
- * @property interstitialPresentationPolicy
- *
- * @discussion
- * The presentation policy determines whether the timing of presentation is entirely
- * managed by the framework or should only take place when the application calls
- * -requestInterstitialAdPresentation. By default the policy is "None", so to be
- * able to present an interstitial it must be changed to either "Automatic" or "Manual".
- */
-@property (nonatomic, assign) ADInterstitialPresentationPolicy interstitialPresentationPolicy NS_DEPRECATED(10_14, 10_14, 7_0, 10_0);
-
-/*!
- * @property canDisplayBannerAds
- *
- * @discussion
- * Set this to enable automatic management of banner ad display with the view controller.
- * It's important to note that this will modify the view hierarchy of the view controller
- * by inserting a new container view above the view controller's view. The impact
- * is that the view controller's view property will no longer return the originally
- * provided view, it will return the new container. To access the original view,
- * use the originalContentView property.
- *
- * @seealso originalContentView
- */
-@property (nonatomic, assign) BOOL canDisplayBannerAds NS_DEPRECATED(10_14, 10_14, 7_0, 10_0);
-
-/*!
- * @property originalContentView
- *
- * @discussion
- * If banner ads have not been enabled, originalContentView will return the view
- * controller's view. If banner ads are enabled, originalContentView returns the
- * view that was previously the view controller's view. If banner ads are then subsequently
- * disabled, the view controller's content view will remain embedded - that operation
- * will not be reversed.
- */
-@property (nullable, nonatomic, strong, readonly) UIView *originalContentView NS_DEPRECATED(10_14, 10_14, 7_0, 10_0);
-
-/*!
- * @property presentingFullScreenAd
- *
- * @discussion
- * Can be used to query the controller to determine if it is presenting a full screen
- * ad, which may be an interstitial or the iAd shown when the user taps a banner.
- */
-@property (nonatomic, readonly, getter=isPresentingFullScreenAd) BOOL presentingFullScreenAd NS_DEPRECATED(10_14, 10_14, 7_0, 10_0);
-
-/*!
- * @property displayingBannerAd
- *
- * @discussion
- * Can be used to query the controller to determine if it is displaying a banner ad.
- */
-@property (nonatomic, readonly, getter=isDisplayingBannerAd) BOOL displayingBannerAd NS_DEPRECATED(10_14, 10_14, 7_0, 10_0);
-
-/*!
- * @method requestInterstitialAdPresentation
- *
- * @return
- * Returns YES if an interstitial can be displayed, NO if not.
- *
- * @discussion
- * Call at any time to request that an interstitial ad be presented. This is appropriate
- * for view controllers that are on screen for long periods of time and internally
- * manage significant state changes, such as game levels. Returns YES if an interstitial
- * will be presented.
- */
-- (BOOL)requestInterstitialAdPresentation NS_DEPRECATED(10_14, 10_14, 7_0, 10_0);
-
-/*!
- * @method shouldPresentInterstitialAd
- *
- * @return
- * Should return YES to allow presentation to proceed, NO to prevent it. The default
- * implementation always returns YES.
- *
- * @discussion
- * Subclasses should override this method if they use ADInterstitialPresentationPolicyAutomatic
- * and require the ability to selectively prevent presentation based on application
- * state. The method will be invoked when the framework is about to present an interstitial
- * ad in the ADInterstitialPresentationPolicyAutomatic configuration.
- */
-@property (NS_NONATOMIC_IOSONLY, readonly) BOOL shouldPresentInterstitialAd NS_DEPRECATED(10_14, 10_14, 7_0, 10_0);
-
-@end
-
-NS_ASSUME_NONNULL_END
-
diff -ruN /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/iAd.apinotes /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/iAd.apinotes
--- /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/iAd.apinotes	2021-03-16 03:42:34.000000000 -0400
+++ /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/iAd.apinotes	2021-06-01 22:34:08.000000000 -0400
@@ -1,21 +1,10 @@
 Name: iAd
 Tags:
-- Name: ADError
-  NSErrorDomain: ADErrorDomain
 - Name: ADClientError
   NSErrorDomain: ADClientErrorDomain
 SwiftVersions:
 - Version: 3.0
   Classes:
-  - Name: ADBannerView
-    Methods:
-      - Selector: "initWithAdType:"
-        MethodKind:      Instance
-        NullabilityOfRet: U
-    Properties:
-      - Name: advertisingSection
-        PropertyKind:    Instance
-        Nullability: U
   - Name: ADClient
     Methods:
       - Selector: "addClientToSegments:replaceExisting:"
@@ -24,17 +13,6 @@
           - Position: 0
             Type: "NSArray *"
             Nullability: U
-      - Selector: "determineAppInstallationAttributionWithCompletionHandler:"
-        MethodKind:      Instance
-        Parameters:
-          - Position: 0
-            Nullability: U
-      - Selector: "lookupAdConversionDetails:"
-        MethodKind:      Instance
-        Parameters:
-          - Position: 0
-            Type: "void (^ _Null_unspecified)(NSDate * _Nullable, NSDate * _Nullable)"
-            Nullability: U
       - Selector: "requestAttributionDetailsWithBlock:"
         MethodKind:      Instance
         Parameters:
@@ -44,79 +22,3 @@
       - Selector: "sharedClient"
         MethodKind:      Class
         NullabilityOfRet: U
-  - Name: ADInterstitialAd
-    Methods:
-      - Selector: "presentInView:"
-        MethodKind:      Instance
-        Parameters:
-          - Position: 0
-            Nullability: U
-  - Name: UIViewController
-    Properties:
-    - Name: originalContentView
-      PropertyKind:    Instance
-      Nullability:     U
-  Protocols:
-    - Name: ADBannerViewDelegate
-      Methods:
-        - Selector: "bannerView:didFailToReceiveAdWithError:"
-          MethodKind: Instance
-          Parameters:
-            - Position: 0
-              Nullability: U
-            - Position: 1
-              Nullability: U
-        - Selector: "bannerViewActionDidFinish:"
-          MethodKind: Instance
-          Parameters:
-            - Position: 0
-              Nullability: U
-        - Selector: "bannerViewActionShouldBegin:willLeaveApplication:"
-          MethodKind: Instance
-          Parameters:
-            - Position: 0
-              Nullability: U
-        - Selector: "bannerViewDidLoadAd:"
-          MethodKind: Instance
-          Parameters:
-            - Position: 0
-              Nullability: U
-        - Selector: "bannerViewWillLoadAd:"
-          MethodKind: Instance
-          Parameters:
-            - Position: 0
-              Nullability: U
-    - Name: ADInterstitialAdDelegate
-      Methods:
-        - Selector: "interstitialAd:didFailWithError:"
-          MethodKind: Instance
-          Parameters:
-            - Position: 0
-              Nullability: U
-            - Position: 1
-              Nullability: U
-        - Selector: "interstitialAdActionDidFinish:"
-          MethodKind: Instance
-          Parameters:
-            - Position: 0
-              Nullability: U
-        - Selector: "interstitialAdActionShouldBegin:willLeaveApplication:"
-          MethodKind: Instance
-          Parameters:
-            - Position: 0
-              Nullability: U
-        - Selector: "interstitialAdDidLoad:"
-          MethodKind: Instance
-          Parameters:
-            - Position: 0
-              Nullability: U
-        - Selector: "interstitialAdDidUnload:"
-          MethodKind: Instance
-          Parameters:
-            - Position: 0
-              Nullability: U
-        - Selector: "interstitialAdWillLoad:"
-          MethodKind: Instance
-          Parameters:
-            - Position: 0
-              Nullability: U
diff -ruN /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/iAd.h /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/iAd.h
--- /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/iAd.h	2021-03-16 08:47:42.000000000 -0400
+++ /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/iAd.framework/Headers/iAd.h	2021-06-01 22:34:55.000000000 -0400
@@ -1,13 +1,5 @@
 /*
- *  iAd.h
- *  iAd
- *
- *  Copyright 2010 Apple, Inc. All rights reserved.
+ *  Copyright 2010-2021 Apple, Inc. All rights reserved.
  */
 
-#import <iAd/ADBannerView.h>
-#import <iAd/ADBannerView_Deprecated.h>
 #import <iAd/ADClient.h>
-#import <iAd/ADInterstitialAd.h>
-#import <iAd/AVPlayerViewController_iAdPreroll.h>
-#import <iAd/UIViewControlleriAdAdditions.h>
Clone this wiki locally