[MAPSME-3810] [ios] Added FBAudienceNetwork.framework.

This commit is contained in:
Ilya Grechuhin 2017-02-10 10:59:21 +03:00 committed by Sergey Yershov
parent 2aa6cae74e
commit 7e3571ee4b
25 changed files with 2162 additions and 0 deletions

3
.gitattributes vendored
View file

@ -43,3 +43,6 @@
*.ttf binary
*.slf binary
*.borders binary
# Files for git lfs
FBAudienceNetwork filter=lfs diff=lfs merge=lfs -text

View file

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2c83a17cad6e8e7c89ac74e742f5916d474dbeef1da696f421148c79fd2a11d4
size 104942232

View file

@ -0,0 +1,14 @@
#include "../../../Configurations/FacebookSDK-DynamicFramework.xcconfig"
PRODUCT_NAME = FBAudienceNetworkDynamicFramework
INFOPLIST_FILE = $(SRCROOT)/FBAudienceNetwork/Info.plist
MODULEMAP_FILE = $(SRCROOT)/FBAudienceNetwork/module.modulemap
IPHONEOS_DEPLOYMENT_TARGET = 8.0
GCC_SYMBOLS_PRIVATE_EXTERN = YES
//FRAMEWORK_SEARCH_PATHS = $(inherited) "$(SRCROOT)/../../vendor"/**
//LIBRARY_SEARCH_PATHS = $(inherited) "$(SRCROOT)/../../vendor"/**
HEADER_SEARCH_PATHS = $(inherited) "$(SDKROOT)/usr/include/libxml2"

View file

@ -0,0 +1,139 @@
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <UIKit/UIKit.h>
#import <FBAudienceNetwork/FBAdDefines.h>
NS_ASSUME_NONNULL_BEGIN
@class FBAdImage;
@class FBNativeAd;
@class FBNativeAdViewAttributes;
/**
FBAdChoicesView offers a simple way to display a sponsored or AdChoices icon.
*/
FB_CLASS_EXPORT FB_SUBCLASSING_RESTRICTED
@interface FBAdChoicesView : UIView
/**
Access to the text label contained in this view.
*/
@property (nonatomic, weak, readonly, nullable) UILabel *label;
/**
Determines whether the background mask is shown, or a transparent mask is used.
*/
@property (nonatomic, assign, getter=isBackgroundShown) BOOL backgroundShown;
/**
Determines whether the view can be expanded upon being tapped, or defaults to fullsize. Defaults to NO.
*/
@property (nonatomic, assign, readonly, getter=isExpandable) BOOL expandable;
/*
The native ad that provides AdChoices info, such as the image url, and click url. Setting this updates the nativeAd.
*/
@property (nonatomic, weak, readwrite, nullable) FBNativeAd *nativeAd;
/*
Affects background mask rendering. Setting this property updates the rendering.
*/
@property (nonatomic, assign, readwrite) UIRectCorner corner;
/*
The view controller to present the ad choices info from. If nil, the top view controller is used.
*/
@property (nonatomic, weak, readwrite, nullable) UIViewController *viewController;
/**
Initialize this view with a given native ad. Configuration is pulled from the native ad.
- Parameter nativeAd: The native ad to initialize with.
*/
- (instancetype)initWithNativeAd:(FBNativeAd *)nativeAd;
/**
Initialize this view with a given native ad. Configuration is pulled from the native ad.
- Parameter nativeAd: The native ad to initialize with.
- Parameter expandable: Controls whether view defaults to expanded or not, see property documentation
*/
- (instancetype)initWithNativeAd:(FBNativeAd *)nativeAd
expandable:(BOOL)expandable;
/**
Initialize this view with explicit parameters.
- Parameter viewController: View controller to present the AdChoices webview from.
- Parameter adChoicesIcon: Native ad AdChoices icon.
- Parameter adChoicesLinkURL: Native ad AdChoices link URL.
- Parameter attributes: Attributes to configure look and feel.
*/
- (instancetype)initWithViewController:(nullable UIViewController *)viewController
adChoicesIcon:(FBAdImage *)adChoicesIcon
adChoicesLinkURL:(NSURL *)adChoicesLinkURL
attributes:(nullable FBNativeAdViewAttributes *)attributes;
/**
Initialize this view with explicit parameters.
- Parameter viewController: View controller to present the AdChoices webview from.
- Parameter adChoicesIcon: Native ad AdChoices icon.
- Parameter adChoicesLinkURL: Native ad AdChoices link URL.
- Parameter attributes: Attributes to configure look and feel.
- Parameter expandable: Controls whether view defaults to expanded or not, see property documentation
*/
- (instancetype)initWithViewController:(nullable UIViewController *)viewController
adChoicesIcon:(FBAdImage *)adChoicesIcon
adChoicesLinkURL:(NSURL *)adChoicesLinkURL
attributes:(nullable FBNativeAdViewAttributes *)attributes
expandable:(BOOL)expandable;
/**
Initialize this view with explicit parameters.
- Parameter viewController: View controller to present the AdChoices webview from.
- Parameter adChoicesIcon: Native ad AdChoices icon.
- Parameter adChoicesLinkURL: Native ad AdChoices link URL.
- Parameter adChoicesText: Native ad AdChoices label.
- Parameter attributes: Attributes to configure look and feel.
- Parameter expandable: Controls whether view defaults to expanded or not, see property documentation
*/
- (instancetype)initWithViewController:(nullable UIViewController *)viewController
adChoicesIcon:(FBAdImage *)adChoicesIcon
adChoicesLinkURL:(NSURL *)adChoicesLinkURL
adChoicesText:(nullable NSString*)adChoicesText
attributes:(nullable FBNativeAdViewAttributes *)attributes
expandable:(BOOL)expandable NS_DESIGNATED_INITIALIZER;
/**
Using the superview, this updates the frame of this view, positioning the icon in the top right corner by default.
*/
- (void)updateFrameFromSuperview;
/**
Using the superview, this updates the frame of this view, positioning the icon in the corner specified. UIRectCornerAllCorners not supported.
- Parameter corner: The corner to display this view from.
*/
- (void)updateFrameFromSuperview:(UIRectCorner)corner;
@end
NS_ASSUME_NONNULL_END

View file

@ -0,0 +1,83 @@
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#ifndef FBAudienceNetwork_FBAdDefines_h
#define FBAudienceNetwork_FBAdDefines_h
#ifdef __cplusplus
#define FB_EXTERN_C_BEGIN extern "C" {
#define FB_EXTERN_C_END }
#else
#define FB_EXTERN_C_BEGIN
#define FB_EXTERN_C_END
#endif
#ifdef __cplusplus
# define FB_EXPORT extern "C" __attribute__((visibility("default")))
#else
# define FB_EXPORT extern __attribute__((visibility("default")))
#endif
#define FB_CLASS_EXPORT __attribute__((visibility("default")))
#define FB_DEPRECATED __attribute__((deprecated))
#if __has_feature(objc_generics)
#define FB_NSArrayOf(x) NSArray<x>
#define FB_NSMutableArrayOf(x) NSMutableArray<x>
#define FB_NSDictionaryOf(x,y) NSDictionary<x, y>
#define FB_NSMutableDictionaryOf(x, y) NSMutableDictionary<x, y>
#define FB_NSSetOf(x) NSSet<x>
#define FB_NSMutableSetOf(x) NSMutableSet<x>
#else
#define FB_NSArrayOf(x) NSArray
#define FB_NSMutableArrayOf(x) NSMutableArray
#define FB_NSDictionaryOf(x,y) NSDictionary
#define FB_NSMutableDictionaryOf(x, y) NSMutableDictionary
#define FB_NSSetOf(x) NSSet
#define FB_NSMutableSetOf(x) NSMutableSet
#define __covariant
#endif
#if ! __has_feature(nullability)
#define NS_ASSUME_NONNULL_BEGIN
#define NS_ASSUME_NONNULL_END
#define nullable
#define __nullable
#endif
#ifndef FB_IOS9_SDK_OR_LATER
#define FB_IOS9_SDK_OR_LATER (__IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_9_0)
#endif
#ifndef FBInterfaceOrientationMask
#if !FB_IOS9_SDK_OR_LATER
#define FBInterfaceOrientationMask NSUInteger
#else
#define FBInterfaceOrientationMask UIInterfaceOrientationMask
#endif // FB_IOS9_SDK_OR_LATER
#endif // FBInterfaceOrientationMask
#ifndef FB_SUBCLASSING_RESTRICTED
#if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted)
#define FB_SUBCLASSING_RESTRICTED __attribute__((objc_subclassing_restricted))
#else
#define FB_SUBCLASSING_RESTRICTED
#endif
#endif
#endif

View file

@ -0,0 +1,158 @@
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <Foundation/Foundation.h>
#import <FBAudienceNetwork/FBAdDefines.h>
NS_ASSUME_NONNULL_BEGIN
/**
Audience Network error domain (returned in NSErrors generated by the SDK)
*/
FB_EXPORT NSString * const FBAudienceNetworkErrorDomain;
typedef NS_ENUM(NSInteger, FBAdLogLevel) {
FBAdLogLevelNone,
FBAdLogLevelNotification,
FBAdLogLevelError,
FBAdLogLevelWarning,
FBAdLogLevelLog,
FBAdLogLevelDebug,
FBAdLogLevelVerbose
};
typedef NS_ENUM(NSInteger, FBMediaViewRenderingMethod) {
FBMediaViewRenderingMethodDefault,
FBMediaViewRenderingMethodMetal,
FBMediaViewRenderingMethodOpenGL,
FBMediaViewRenderingMethodSoftware
};
/**
AdSettings contains global settings for all ad controls.
*/
FB_CLASS_EXPORT FB_SUBCLASSING_RESTRICTED
@interface FBAdSettings : NSObject
/**
Returns test mode on/off.
*/
+ (BOOL)isTestMode;
/**
Returns the hashid of the device to use test mode on.
*/
+ (NSString *)testDeviceHash;
/**
Adds a test device.
- Parameter deviceHash: The id of the device to use test mode, can be obtained from debug log or testDeviceHash
Copy the current device Id from debug log and add it as a test device to get test ads. Apps
running on emulator will automatically get test ads. Test devices should be added before loadAd is called.
*/
+ (void)addTestDevice:(NSString *)deviceHash;
/**
Add a collection of test devices. See `+addTestDevices:` for details.
- Parameter devicesHash: The array of the device id to use test mode, can be obtained from debug log or testDeviceHash
*/
+ (void)addTestDevices:(FB_NSArrayOf(NSString *)*)devicesHash;
/**
Clear all the added test devices
*/
+ (void)clearTestDevices;
/**
Clears the added test device
- Parameter deviceHash: The id of the device using test mode, can be obtained from debug log or testDeviceHash
*/
+ (void)clearTestDevice:(NSString *)deviceHash;
/**
Configures the ad control for treatment as child-directed.
- Parameter isChildDirected: Indicates whether you would like your ad control to be treated as child-directed
Note that you may have other legal obligations under the Children's Online Privacy Protection Act (COPPA).
Please review the FTC's guidance and consult with your own legal counsel.
*/
+ (void)setIsChildDirected:(BOOL)isChildDirected;
/**
If an ad provided service is mediating Audience Network in their sdk, it is required to set the name of the mediation service
- Parameter service: Representing the name of the mediation that is mediation Audience Network
*/
+ (void)setMediationService:(NSString *)service;
/**
Gets the url prefix to use when making ad requests.
This method should never be used in production.
*/
+ (NSString *)urlPrefix;
/**
Sets the url prefix to use when making ad requests.
This method should never be used in production.
*/
+ (void)setUrlPrefix:(NSString *) urlPrefix;
/**
Gets the current SDK logging level
*/
+ (FBAdLogLevel)getLogLevel;
/**
Sets the current SDK logging level
*/
+ (void)setLogLevel:(FBAdLogLevel)level;
/**
Gets the FBMediaView rendering method
*/
+ (FBMediaViewRenderingMethod)mediaViewRenderingMethod;
/**
Sets the FBMediaView rendering method
- Parameter mediaViewRenderingMethod:
FBMediaViewRenderingMethodDefault: SDK chooses optimized rendering method
FBMediaViewRenderingMethodMetal: use Metal kit rendering method
FBMediaViewRenderingMethodOpenGL: use OpenGL rendering method
FBMediaViewRenderingMethodSoftware: use software rendering method
*/
+ (void)setMediaViewRenderingMethod:(FBMediaViewRenderingMethod)mediaViewRenderingMethod;
@end
NS_ASSUME_NONNULL_END

View file

@ -0,0 +1,63 @@
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <StoreKit/StoreKit.h>
#import <UIKit/UIKit.h>
#import <FBAudienceNetwork/FBAdDefines.h>
NS_ASSUME_NONNULL_BEGIN
/**
FBAdSize
Represents the ad size.
*/
typedef struct FBAdSize {
CGSize size;
} FBAdSize;
/**
DEPRECATED - Represents the fixed banner ad size - 320pt by 50pt.
*/
FB_EXPORT FBAdSize const kFBAdSize320x50;
/**
Represents the flexible banner ad size, where banner width depends on
its container width, and banner height is fixed as 50pt.
*/
FB_EXPORT FBAdSize const kFBAdSizeHeight50Banner;
/**
Represents the flexible banner ad size, where banner width depends on
its container width, and banner height is fixed as 90pt.
*/
FB_EXPORT FBAdSize const kFBAdSizeHeight90Banner;
/**
Represents the interstitial ad size.
*/
FB_EXPORT FBAdSize const kFBAdSizeInterstitial;
/**
Represents the flexible rectangle ad size, where width depends on
its container width, and height is fixed as 250pt.
*/
FB_EXPORT FBAdSize const kFBAdSizeHeight250Rectangle;
NS_ASSUME_NONNULL_END

View file

@ -0,0 +1,140 @@
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <StoreKit/StoreKit.h>
#import <UIKit/UIKit.h>
#import <FBAudienceNetwork/FBAdDefines.h>
#import <FBAudienceNetwork/FBAdSize.h>
NS_ASSUME_NONNULL_BEGIN
@protocol FBAdViewDelegate;
/**
A customized UIView to represent a Facebook ad (a.k.a. banner ad).
*/
FB_CLASS_EXPORT
@interface FBAdView : UIView
/**
This is a method to initialize an FBAdView matching the given placement id.
- Parameter placementID: The id of the ad placement. You can create your placement id from Facebook developers page.
- Parameter adSize: The size of the ad; for example, kFBAdSizeHeight50Banner or kFBAdSizeHeight90Banner.
- Parameter viewController: The view controller that will be used to present the ad and the app store view.
*/
- (instancetype)initWithPlacementID:(NSString *)placementID
adSize:(FBAdSize)adSize
rootViewController:(nullable UIViewController *)viewController NS_DESIGNATED_INITIALIZER;
/**
Begins loading the FBAdView content.
You can implement `adViewDidLoad:` and `adView:didFailWithError:` methods
of `FBAdViewDelegate` if you would like to be notified as loading succeeds or fails.
*/
- (void)loadAd;
/**
This is a method to disable auto refresh for the FBAdView instance
By default, we read the refresh interval from the placement setting in your Facebook
developers page. Once you call this method, the auto refresh will be disabled for this FBAdView
instance, and you cannot re-enable the refresh for this instance. A new created FBAdView will still
use the default behavior.
This method is designed for ad network mediation. We still recommend you to set the placement
refresh interval as 'None' if you're using one of the ad network mediation.
*/
- (void)disableAutoRefresh;
/**
Typed access to the id of the ad placement.
*/
@property (nonatomic, copy, readonly) NSString *placementID;
/**
Typed access to the app's root view controller.
*/
@property (nonatomic, weak, readonly, nullable) UIViewController *rootViewController;
/**
the delegate
*/
@property (nonatomic, weak, nullable) id<FBAdViewDelegate> delegate;
@end
/**
@protocol
The methods declared by the FBAdViewDelegate protocol allow the adopting delegate to respond
to messages from the FBAdView class and thus respond to operations such as whether the ad has
been loaded, the person has clicked the ad.
*/
@protocol FBAdViewDelegate <NSObject>
@optional
/**
Sent after an ad has been clicked by the person.
- Parameter adView: An FBAdView object sending the message.
*/
- (void)adViewDidClick:(FBAdView *)adView;
/**
When an ad is clicked, the modal view will be presented. And when the user finishes the
interaction with the modal view and dismiss it, this message will be sent, returning control
to the application.
- Parameter adView: An FBAdView object sending the message.
*/
- (void)adViewDidFinishHandlingClick:(FBAdView *)adView;
/**
Sent when an ad has been successfully loaded.
- Parameter adView: An FBAdView object sending the message.
*/
- (void)adViewDidLoad:(FBAdView *)adView;
/**
Sent after an FBAdView fails to load the ad.
- Parameter adView: An FBAdView object sending the message.
- Parameter error: An error object containing details of the error.
*/
- (void)adView:(FBAdView *)adView didFailWithError:(NSError *)error;
/**
Sent immediately before the impression of an FBAdView object will be logged.
- Parameter adView: An FBAdView object sending the message.
*/
- (void)adViewWillLogImpression:(FBAdView *)adView;
/**
Asks the delegate for a view controller to present modal content, such as the in-app
browser that can appear when an ad is clicked.
- Returns: A view controller that is used to present modal content.
*/
@property (nonatomic, readonly, strong, nonnull) UIViewController *viewControllerForPresentingModalView;
@end
NS_ASSUME_NONNULL_END

View file

@ -0,0 +1,41 @@
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <UIKit/UIKit.h>
#import <FBAudienceNetwork/FBAdChoicesView.h>
#import <FBAudienceNetwork/FBAdDefines.h>
#import <FBAudienceNetwork/FBAdSettings.h>
#import <FBAudienceNetwork/FBAdView.h>
#import <FBAudienceNetwork/FBInstreamAdView.h>
#import <FBAudienceNetwork/FBInterstitialAd.h>
#import <FBAudienceNetwork/FBMediaView.h>
#import <FBAudienceNetwork/FBNativeAd.h>
#import <FBAudienceNetwork/FBNativeAdCollectionViewAdProvider.h>
#import <FBAudienceNetwork/FBNativeAdCollectionViewCellProvider.h>
#import <FBAudienceNetwork/FBNativeAdScrollView.h>
#import <FBAudienceNetwork/FBNativeAdTableViewAdProvider.h>
#import <FBAudienceNetwork/FBNativeAdTableViewCellProvider.h>
#import <FBAudienceNetwork/FBNativeAdView.h>
#import <FBAudienceNetwork/FBNativeAdsManager.h>
#import <FBAudienceNetwork/FBRewardedVideoAd.h>
// NOTE: Any changes should also be made to the module.modulemap
// to ensure comptability with Swift apps using Cocoapods
#define FB_AD_SDK_VERSION @"4.19.0"

View file

@ -0,0 +1,51 @@
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <UIKit/UIKit.h>
@protocol FBInstreamAdViewDelegate;
@interface FBInstreamAdView : UIView
@property (nonatomic, getter=isAdValid, readonly) BOOL adValid;
@property (nonatomic, weak, nullable) id<FBInstreamAdViewDelegate> delegate;
@property (nonatomic, copy, readonly, nonnull) NSString *placementID;
- (nullable instancetype)initWithPlacementID:(nonnull NSString *)placementID NS_DESIGNATED_INITIALIZER;
- (void)loadAd;
- (BOOL)showAdFromRootViewController:(nullable UIViewController *)rootViewController;
@end
@protocol FBInstreamAdViewDelegate <NSObject>
- (void)adViewDidLoad:(nonnull FBInstreamAdView *)adView;
- (void)adViewDidEnd:(nonnull FBInstreamAdView *)adView;
- (void)adView:(nonnull FBInstreamAdView *)adView didFailWithError:(nonnull NSError *)error;
@optional
- (void)adViewDidClick:(nonnull FBInstreamAdView *)adView;
- (void)adViewWillLogImpression:(nonnull FBInstreamAdView *)adView;
@end

View file

@ -0,0 +1,140 @@
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <Foundation/Foundation.h>
#import <StoreKit/StoreKit.h>
#import <FBAudienceNetwork/FBAdDefines.h>
#import <FBAudienceNetwork/FBAdView.h>
NS_ASSUME_NONNULL_BEGIN
@protocol FBInterstitialAdDelegate;
/**
A modal view controller to represent a Facebook interstitial ad. This
is a full-screen ad shown in your application.
*/
FB_CLASS_EXPORT FB_SUBCLASSING_RESTRICTED
@interface FBInterstitialAd : NSObject
/**
Typed access to the id of the ad placement.
*/
@property (nonatomic, copy, readonly, nonnull) NSString *placementID;
/**
the delegate
*/
@property (nonatomic, weak, nullable) id<FBInterstitialAdDelegate> delegate;
/**
This is a method to initialize an FBInterstitialAd matching the given placement id.
- Parameter placementID: The id of the ad placement. You can create your placement id from Facebook developers page.
*/
- (instancetype)initWithPlacementID:(NSString *)placementID NS_DESIGNATED_INITIALIZER;
/**
Returns true if the interstitial ad has been successfully loaded.
You should check `isAdValid` before trying to show the ad.
*/
@property (nonatomic, getter=isAdValid, readonly) BOOL adValid;
/**
Begins loading the FBInterstitialAd content.
You can implement `interstitialAdDidLoad:` and `interstitialAd:didFailWithError:` methods
of `FBInterstitialAdDelegate` if you would like to be notified as loading succeeds or fails.
*/
- (void)loadAd;
/**
Presents the interstitial ad modally from the specified view controller.
- Parameter rootViewController: The view controller that will be used to present the interstitial ad.
You can implement `interstitialAdDidClick:`, `interstitialAdWillClose:` and `interstitialAdWillClose`
methods of `FBInterstitialAdDelegate` if you would like to stay informed for thoses events
*/
- (BOOL)showAdFromRootViewController:(nullable UIViewController *)rootViewController;
@end
/**
@protocol
The methods declared by the FBInterstitialAdDelegate protocol allow the adopting delegate to respond
to messages from the FBInterstitialAd class and thus respond to operations such as whether the
interstitial ad has been loaded, user has clicked or closed the interstitial.
*/
@protocol FBInterstitialAdDelegate <NSObject>
@optional
/**
Sent after an ad in the FBInterstitialAd object is clicked. The appropriate app store view or
app browser will be launched.
- Parameter interstitialAd: An FBInterstitialAd object sending the message.
*/
- (void)interstitialAdDidClick:(FBInterstitialAd *)interstitialAd;
/**
Sent after an FBInterstitialAd object has been dismissed from the screen, returning control
to your application.
- Parameter interstitialAd: An FBInterstitialAd object sending the message.
*/
- (void)interstitialAdDidClose:(FBInterstitialAd *)interstitialAd;
/**
Sent immediately before an FBInterstitialAd object will be dismissed from the screen.
- Parameter interstitialAd: An FBInterstitialAd object sending the message.
*/
- (void)interstitialAdWillClose:(FBInterstitialAd *)interstitialAd;
/**
Sent when an FBInterstitialAd successfully loads an ad.
- Parameter interstitialAd: An FBInterstitialAd object sending the message.
*/
- (void)interstitialAdDidLoad:(FBInterstitialAd *)interstitialAd;
/**
Sent when an FBInterstitialAd failes to load an ad.
- Parameter interstitialAd: An FBInterstitialAd object sending the message.
- Parameter error: An error object containing details of the error.
*/
- (void)interstitialAd:(FBInterstitialAd *)interstitialAd didFailWithError:(NSError *)error;
/**
Sent immediately before the impression of an FBInterstitialAd object will be logged.
- Parameter interstitialAd: An FBInterstitialAd object sending the message.
*/
- (void)interstitialAdWillLogImpression:(FBInterstitialAd *)interstitialAd;
@end
NS_ASSUME_NONNULL_END

View file

@ -0,0 +1,141 @@
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <UIKit/UIKit.h>
#import <FBAudienceNetwork/FBAdDefines.h>
NS_ASSUME_NONNULL_BEGIN
@protocol FBMediaViewDelegate;
@class FBNativeAd;
/**
The FBMediaView loads media content from a given FBNativeAd. This view takes the place of manually loading a cover image.
*/
FB_CLASS_EXPORT
@interface FBMediaView : UIView
/**
the delegate
*/
@property (nonatomic, weak, nullable) id<FBMediaViewDelegate> delegate;
/**
This is a method to create a media view using the given native ad.
- Parameter nativeAd: The native ad to load media content from.
*/
- (instancetype)initWithNativeAd:(FBNativeAd *)nativeAd;
/**
the native ad, can be set again to reuse this view.
*/
@property (nonatomic, strong, nonnull) FBNativeAd *nativeAd;
/**
The current volume of the media view, ranging from 0.0 through 1.0.
*/
@property (nonatomic, assign, readonly) float volume;
/**
Enables or disables autoplay for some types of media. Defaults to YES.
*/
@property (nonatomic, assign, getter=isAutoplayEnabled) BOOL autoplayEnabled;
/**
The aspect ratio of the media view visual content. Returns a CGFloat ranging from 0.0 to 1.0. Returns 0.0 if no ad is currently loaded.
*/
@property (nonatomic, assign, readonly) CGFloat aspectRatio;
/**
Changes the width of the FBMediaView's frame based on the current height, respecting aspectRatio.
*/
- (void)applyNaturalWidth;
/**
Changes the height of the FBMediaView's frame based on the current width, respecting aspectRatio.
*/
- (void)applyNaturalHeight;
// Setting autoplayEnabled in the SDK is deprecated. Migrate to using server-side control when available.
- (void)setAutoplayEnabled:(BOOL)autoplayEnabled FB_DEPRECATED;
@end
/**
@protocol
The methods declared by the FBMediaViewDelegate protocol allow the adopting delegate to respond to messages from the FBMediaView class and thus respond to operations such as whether the media content has been loaded.
*/
@protocol FBMediaViewDelegate <NSObject>
@optional
/**
Sent when an FBMediaView has been successfully loaded.
- Parameter mediaView: An FBMediaView object sending the message.
*/
- (void)mediaViewDidLoad:(FBMediaView *)mediaView;
/**
Sent just before an FBMediaView will enter the fullscreen layout.
- Parameter mediaView: An FBMediaView object sending the message.
*/
- (void)mediaViewWillEnterFullscreen:(FBMediaView *)mediaView;
/**
Sent after an FBMediaView has exited the fullscreen layout.
- Parameter mediaView: An FBMediaView object sending the message.
*/
- (void)mediaViewDidExitFullscreen:(FBMediaView *)mediaView;
/**
Sent when an FBMediaView has changed the playback volume of a video ad.
- Parameter mediaView: An FBMediaView object sending the message.
- Parameter volume: The current ad video volume (after the volume change).
*/
- (void)mediaView:(FBMediaView *)mediaView videoVolumeDidChange:(float)volume;
/**
Sent after a video ad in an FBMediaView enters a paused state.
- Parameter mediaView: An FBMediaView object sending the message.
*/
- (void)mediaViewVideoDidPause:(FBMediaView *)mediaView;
/**
Sent after a video ad in an FBMediaView enters a playing state.
- Parameter mediaView: An FBMediaView object sending the message.
*/
- (void)mediaViewVideoDidPlay:(FBMediaView *)mediaView;
/**
Sent when a video ad in an FBMediaView reaches the end of playback.
- Parameter mediaView: An FBMediaView object sending the message.
*/
- (void)mediaViewVideoDidComplete:(FBMediaView *)mediaView;
@end
NS_ASSUME_NONNULL_END

View file

@ -0,0 +1,273 @@
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <UIKit/UIKit.h>
#import <FBAudienceNetwork/FBAdDefines.h>
NS_ASSUME_NONNULL_BEGIN
@protocol FBNativeAdDelegate;
@class FBAdImage;
typedef NS_OPTIONS(NSInteger, FBNativeAdsCachePolicy) {
FBNativeAdsCachePolicyNone = 1 << 0,
FBNativeAdsCachePolicyIcon = 1 << 1,
FBNativeAdsCachePolicyCoverImage = 1 << 2,
FBNativeAdsCachePolicyVideo = 1 << 3,
FBNativeAdsCachePolicyAll = FBNativeAdsCachePolicyCoverImage | FBNativeAdsCachePolicyIcon | FBNativeAdsCachePolicyVideo,
};
/**
The FBNativeAd represents ad metadata to allow you to construct custom ad views.
See the NativeAdSample in the sample apps section of the Audience Network framework.
*/
FB_CLASS_EXPORT FB_SUBCLASSING_RESTRICTED
@interface FBNativeAd : NSObject
/**
Typed access to the id of the ad placement.
*/
@property (nonatomic, copy, readonly, nonnull) NSString *placementID;
/**
Typed access to the ad star rating. See `FBAdStarRating` for details.
*/
@property (nonatomic, assign, readonly) struct FBAdStarRating starRating FB_DEPRECATED;
/**
Typed access to the ad title.
*/
@property (nonatomic, copy, readonly, nullable) NSString *title;
/**
Typed access to the ad subtitle.
*/
@property (nonatomic, copy, readonly, nullable) NSString *subtitle;
/**
Typed access to the ad social context, for example "Over half a million users".
*/
@property (nonatomic, copy, readonly, nullable) NSString *socialContext;
/**
Typed access to the call to action phrase of the ad, for example "Install Now".
*/
@property (nonatomic, copy, readonly, nullable) NSString *callToAction;
/**
Typed access to the ad icon. See `FBAdImage` for details.
*/
@property (nonatomic, strong, readonly, nullable) FBAdImage *icon;
/**
Typed access to the ad cover image creative. See `FBAdImage` for details.
*/
@property (nonatomic, strong, readonly, nullable) FBAdImage *coverImage;
/**
Typed access to the body text, usually a longer description of the ad.
*/
@property (nonatomic, copy, readonly, nullable) NSString *body;
/**
Set the native ad caching policy. This controls which media (images, video, etc) from the native ad are cached before the native ad calls nativeAdLoaded on its delegate. The default is to not block on caching. Ensure that media is loaded through FBMediaView or through [FBAdImage loadImageAsyncWithBlock:] to take full advantage of caching.
*/
@property (nonatomic, assign) FBNativeAdsCachePolicy mediaCachePolicy;
/**
the delegate
*/
@property (nonatomic, weak, nullable) id<FBNativeAdDelegate> delegate;
/**
This is a method to initialize a FBNativeAd object matching the given placement id.
- Parameter placementID: The id of the ad placement. You can create your placement id from Facebook developers page.
*/
- (instancetype)initWithPlacementID:(NSString *)placementID NS_DESIGNATED_INITIALIZER;
/**
This is a method to associate a FBNativeAd with the UIView you will use to display the native ads.
- Parameter view: The UIView you created to render all the native ads data elements.
- Parameter viewController: The UIViewController that will be used to present SKStoreProductViewController
(iTunes Store product information) or the in-app browser. If nil is passed, the top view controller currently shown will be used.
The whole area of the UIView will be clickable.
*/
- (void)registerViewForInteraction:(UIView *)view
withViewController:(nullable UIViewController *)viewController;
/**
This is a method to associate FBNativeAd with the UIView you will use to display the native ads
and set clickable areas.
- Parameter view: The UIView you created to render all the native ads data elements.
- Parameter viewController: The UIViewController that will be used to present SKStoreProductViewController
(iTunes Store product information). If nil is passed, the top view controller currently shown will be used.
- Parameter clickableViews: An array of UIView you created to render the native ads data element, e.g.
CallToAction button, Icon image, which you want to specify as clickable.
*/
- (void)registerViewForInteraction:(UIView *)view
withViewController:(nullable UIViewController *)viewController
withClickableViews:(FB_NSArrayOf(UIView *)*)clickableViews;
/**
This is a method to disconnect a FBNativeAd with the UIView you used to display the native ads.
*/
- (void)unregisterView;
/**
Begins loading the FBNativeAd content.
You can implement `nativeAdDidLoad:` and `nativeAd:didFailWithError:` methods
of `FBNativeAdDelegate` if you would like to be notified as loading succeeds or fails.
*/
- (void)loadAd;
/**
Call isAdValid to check whether native ad is valid & internal consistent prior rendering using its properties. If
rendering is done as part of the loadAd callback, it is guarantee to be consistent
*/
@property (nonatomic, getter=isAdValid, readonly) BOOL adValid;
@property (nonatomic, copy, readonly, nullable, getter=getAdNetwork) NSString *adNetwork;
@end
/**
@protocol
The methods declared by the FBNativeAdDelegate protocol allow the adopting delegate to respond to messages
from the FBNativeAd class and thus respond to operations such as whether the native ad has been loaded.
*/
@protocol FBNativeAdDelegate <NSObject>
@optional
/**
Sent when an FBNativeAd has been successfully loaded.
- Parameter nativeAd: An FBNativeAd object sending the message.
*/
- (void)nativeAdDidLoad:(FBNativeAd *)nativeAd;
/**
Sent immediately before the impression of an FBNativeAd object will be logged.
- Parameter nativeAd: An FBNativeAd object sending the message.
*/
- (void)nativeAdWillLogImpression:(FBNativeAd *)nativeAd;
/**
Sent when an FBNativeAd is failed to load.
- Parameter nativeAd: An FBNativeAd object sending the message.
- Parameter error: An error object containing details of the error.
*/
- (void)nativeAd:(FBNativeAd *)nativeAd didFailWithError:(NSError *)error;
/**
Sent after an ad has been clicked by the person.
- Parameter nativeAd: An FBNativeAd object sending the message.
*/
- (void)nativeAdDidClick:(FBNativeAd *)nativeAd;
/**
When an ad is clicked, the modal view will be presented. And when the user finishes the
interaction with the modal view and dismiss it, this message will be sent, returning control
to the application.
- Parameter nativeAd: An FBNativeAd object sending the message.
*/
- (void)nativeAdDidFinishHandlingClick:(FBNativeAd *)nativeAd;
@end
/**
Represents the Facebook ad star rating, which contains the rating value and rating scale.
*/
FB_EXPORT struct FBAdStarRating {
CGFloat value;
NSInteger scale;
} FBAdStarRating;
/**
Represents an image creative.
*/
FB_CLASS_EXPORT
@interface FBAdImage : NSObject
/**
Typed access to the image url.
*/
@property (nonatomic, copy, readonly, nonnull) NSURL *url;
/**
Typed access to the image width.
*/
@property (nonatomic, assign, readonly) NSInteger width;
/**
Typed access to the image height.
*/
@property (nonatomic, assign, readonly) NSInteger height;
/**
This is a method to initialize an FBAdImage.
- Parameter url: the image url.
- Parameter width: the image width.
- Parameter height: the image height.
*/
- (instancetype)initWithURL:(NSURL *)url
width:(NSInteger)width
height:(NSInteger)height NS_DESIGNATED_INITIALIZER;
/**
Loads an image from self.url over the network, or returns the cached image immediately.
- Parameter block: Block to handle the loaded image.
*/
- (void)loadImageAsyncWithBlock:(nullable void (^)(UIImage * __nullable image))block;
@end
/**
Helper view that draws a star rating based off a native ad.
*/
FB_CLASS_EXPORT FB_DEPRECATED
@interface FBAdStarRatingView : UIView
/**
The current rating from an FBNativeAd. When set, updates the view.
*/
@property (nonatomic, assign) struct FBAdStarRating rating FB_DEPRECATED;
/**
The color drawn for filled-in stars. Defaults to yellow.
*/
@property (strong, nonatomic, nonnull) UIColor *primaryColor FB_DEPRECATED;
/**
The color drawn for empty stars. Defaults to gray.
*/
@property (strong, nonatomic, nonnull) UIColor *secondaryColor FB_DEPRECATED;
/**
Initializes a star rating view with a given frame and star rating.
- Parameter frame: Frame of this view.
- Parameter starRating: Star rating from a native ad.
*/
- (instancetype)initWithFrame:(CGRect)frame withStarRating:(struct FBAdStarRating)starRating NS_DESIGNATED_INITIALIZER FB_DEPRECATED;
@end
NS_ASSUME_NONNULL_END

View file

@ -0,0 +1,84 @@
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <FBAudienceNetwork/FBAdDefines.h>
#import <FBAudienceNetwork/FBNativeAd.h>
#import <FBAudienceNetwork/FBNativeAdsManager.h>
NS_ASSUME_NONNULL_BEGIN
/**
Additional functionality on top of FBNativeAdsManager to assist in using native ads within a UICollectionView. This class contains a mechanism to map indexPaths to native ads in a stable manner as well as helpers which assist in doing the math to include ads at a regular interval within a collection view.
*/
FB_CLASS_EXPORT FB_SUBCLASSING_RESTRICTED
@interface FBNativeAdCollectionViewAdProvider : NSObject
/**
Passes delegate methods from FBNativeAd. Separate delegate calls will be made for each native ad contained.
*/
@property (nonatomic, weak, nullable) id<FBNativeAdDelegate> delegate;
/**
Create a FBNativeAdCollectionViewAdProvider.
- Parameter manager: The FBNativeAdsManager which is consumed by this class.
*/
- (instancetype)initWithManager:(FBNativeAdsManager *)manager NS_DESIGNATED_INITIALIZER;
/**
Retrieve a native ad for an indexPath, will return the same ad for a given indexPath until the native ads manager is refreshed. This method is intended for usage with a collection view and specifically the caller is recommended to wait until collectionView:cellForRowAtIndexPath: to ensure getting the best native ad for the given collection cell.
- Parameter collectionView: The collectionView where native ad will be used
- Parameter indexPath: The indexPath to use as a key for this native ad
- Returns: A FBNativeAd which is loaded and ready to be used.
*/
- (FBNativeAd *)collectionView:(UICollectionView *)collectionView nativeAdForRowAtIndexPath:(NSIndexPath *)indexPath;
/**
Support for evenly distributed native ads within a collection view. Computes whether this cell is an ad or not.
- Parameter indexPath: The indexPath of the cell within the collection view
- Parameter stride: The frequency that native ads are to appear within the collection view
- Returns: Boolean indicating whether the cell at the path is an ad
*/
- (BOOL)isAdCellAtIndexPath:(NSIndexPath *)indexPath forStride:(NSUInteger)stride;
/**
Support for evenly distributed native ads within a collection view. Adjusts a non-ad cell indexPath to the indexPath it would be in a collection with no ads.
- Parameter indexPath: The indexPath to of the non-ad cell
- Parameter stride: The frequency that native ads are to appear within the collection view
- Returns: An indexPath adjusted to what it would be in a collection view with no ads
*/
- (NSIndexPath *)adjustNonAdCellIndexPath:(NSIndexPath *)indexPath forStride:(NSUInteger)stride;
/**
Support for evenly distributed native ads within a collection view. Adjusts the total count of cells within the collection view to account for the ad cells.
- Parameter count: The count of cells in the collection view not including ads
- Parameter stride: The frequency that native ads are to appear within the collection view
- Returns: The total count of cells within the collection view including both ad and non-ad cells
*/
- (NSUInteger)adjustCount:(NSUInteger)count forStride:(NSUInteger)stride;
@end
NS_ASSUME_NONNULL_END

View file

@ -0,0 +1,65 @@
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <FBAudienceNetwork/FBAdDefines.h>
#import <FBAudienceNetwork/FBNativeAd.h>
#import <FBAudienceNetwork/FBNativeAdCollectionViewAdProvider.h>
#import <FBAudienceNetwork/FBNativeAdView.h>
#import <FBAudienceNetwork/FBNativeAdsManager.h>
NS_ASSUME_NONNULL_BEGIN
/**
Class which assists in putting FBNativeAdViews into UICollectionViews. This class manages the creation of UICollectionViewCells which host native ad views. Functionality is provided to create UICollectionCellViews as needed for a given indexPath as well as computing the height of the cells.
*/
FB_CLASS_EXPORT FB_SUBCLASSING_RESTRICTED
@interface FBNativeAdCollectionViewCellProvider : FBNativeAdCollectionViewAdProvider
/**
Method to create a FBNativeAdCollectionViewCellProvider.
- Parameter manager: The naitve ad manager consumed by this provider
- Parameter type: The type of this native ad template. For more information, consult FBNativeAdViewType.
*/
- (instancetype)initWithManager:(FBNativeAdsManager *)manager forType:(FBNativeAdViewType)type;
/**
Method to create a FBNativeAdCollectionViewCellProvider.
- Parameter manager: The naitve ad manager consumed by this provider
- Parameter type: The type of this native ad template. For more information, consult FBNativeAdViewType.
- Parameter attributes: The layout of this native ad template. For more information, consult FBNativeAdViewLayout.
*/
- (instancetype)initWithManager:(FBNativeAdsManager *)manager forType:(FBNativeAdViewType)type forAttributes:(FBNativeAdViewAttributes *)attributes NS_DESIGNATED_INITIALIZER;
/**
Helper method for implementors of UICollectionViewDataSource who would like to host native ad UICollectionViewCells in their collection view.
*/
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath;
/**
Helper method for implementors of UICollectionViewDelegate who would like to host native ad UICollectionViewCells in their collection view.
*/
- (CGFloat)collectionView:(nonnull UICollectionView *)collectionView heightForRowAtIndexPath:(nonnull NSIndexPath *)indexPath;
@end
NS_ASSUME_NONNULL_END

View file

@ -0,0 +1,120 @@
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <UIKit/UIKit.h>
#import <FBAudienceNetwork/FBAdDefines.h>
#import <FBAudienceNetwork/FBNativeAdView.h>
#import <FBAudienceNetwork/FBNativeAdsManager.h>
NS_ASSUME_NONNULL_BEGIN
@protocol FBNativeAdView;
/**
Contains multiple ads in a scroll view.
If adding this view to a XIB or Storyboard, you may recieve the error "Unknown class FBNativeAdScrollView in Interface Builder file" in some cases. This error is caused by the linker failing to include FBNativeAdScrollView in your build. To resolve this, call [FBNativeAdScrollView class] in your project, or add "-all_load -ObjC" to "Other Linker Flags" in your project settings.
*/
FB_CLASS_EXPORT FB_SUBCLASSING_RESTRICTED
@interface FBNativeAdScrollView : UIView
/**
Maximum native ads that this scroll view will load. Defaults to 10. If changed after calling loadAds, all current ads will be discarded and loadAds must be called again.
*/
@property (nonatomic, assign, readonly) NSUInteger maximumNativeAdCount;
/**
Toggles animating the loaded views. Default is YES.
*/
@property (nonatomic, assign, getter=isAnimationEnabled) BOOL animationEnabled;
/**
Horizontal inset for views in the scroll view. Defaults to 8 points.
*/
@property (nonatomic, assign) CGFloat xInset;
/**
Reloads the same ads for the same manager. Default is NO.
*/
@property (nonatomic, assign, getter=isAdPersistenceEnabled) BOOL adPersistenceEnabled;
/**
A view controller that is used to present modal content. If nil, the view searches for a view controller.
*/
@property (nonatomic, weak, nullable) UIViewController *viewController;
/**
Passes delegate methods from FBNativeAd. Separate delegate calls will be made for each native ad contained.
*/
@property (nonatomic, weak, nullable) id<FBNativeAdDelegate> delegate;
/**
Creates a native ad horizontal scroll view for a given native ads manager and native ad template. The manager can be preloaded with ads, and loadAds will use the preloaded ads from the manager. Otherwise, the scroll view uses the manager to load ads normally.
- Parameter manager: An instance of FBNativeAdManager. Can be preloaded with ads.
- Parameter type: The type of this native ad template. For more information, consult FBNativeAdViewType.
*/
- (nonnull instancetype)initWithNativeAdsManager:(nonnull FBNativeAdsManager *)manager
withType:(FBNativeAdViewType)type;
/**
Creates a native ad horizontal scroll view for a given native ads manager and native ad template. The manager can be preloaded with ads, and loadAds will use the preloaded ads from the manager. Otherwise, the scroll view uses the manager to load ads normally.
- Parameter manager: An instance of FBNativeAdManager. Can be preloaded with ads.
- Parameter type: The type of this native ad template. For more information, consult FBNativeAdViewType.
- Parameter attributes: The layout of this native ad template. For more information, consult FBNativeAdViewLayout.
*/
- (nonnull instancetype)initWithNativeAdsManager:(nonnull FBNativeAdsManager *)manager
withType:(FBNativeAdViewType)type
withAttributes:(nonnull FBNativeAdViewAttributes *)attributes;
/**
Creates a native ad horizontal scroll view for a given native ads manager and native ad template. The manager can be preloaded with ads, and loadAds will use the preloaded ads from the manager. Otherwise, the scroll view uses the manager to load ads normally.
- Parameter manager: An instance of FBNativeAdManager. Can be preloaded with ads.
- Parameter type: The type of this native ad template. For more information, consult FBNativeAdViewType.
- Parameter attributes: The layout of this native ad template. For more information, consult FBNativeAdViewLayout.
- Parameter maximumNativeAdCount: Maximum native ads to show at once.
*/
- (nonnull instancetype)initWithNativeAdsManager:(nonnull FBNativeAdsManager *)manager
withType:(FBNativeAdViewType)type
withAttributes:(nonnull FBNativeAdViewAttributes *)attributes
withMaximum:(NSUInteger)maximumNativeAdCount;
/**
This is a method to create a native ad horizontal scroll view from a user provided view.
- Parameter manager: An instance of FBNativeAdManager. Can be preloaded with ads.
- Parameter childViewProvider: Block that creates new views for each loaded native ad. Must not reuse the same instance, but return a new view for each call. Views may be arbitrarily resized and should support resizing their content through Auto Layout constraints, autoresizing masks, or manual resizing.
*/
- (nonnull instancetype)initWithNativeAdsManager:(nonnull FBNativeAdsManager *)manager
withViewProvider:(nonnull UIView * __nonnull(^)( FBNativeAd * __nonnull nativeAd, NSUInteger position))childViewProvider;
/**
This is a method to create a native ad horizontal scroll view from a user provided view.
- Parameter manager: An instance of FBNativeAdManager. Can be preloaded with ads.
- Parameter childViewProvider: Block that creates new views for each loaded native ad. Must not reuse the same instance, but return a new view for each call. Views may be arbitrarily resized and should support resizing their content through Auto Layout constraints, autoresizing masks, or manual resizing.
- Parameter maximumNativeAdCount: Maximum native ads to show at once.
*/
- (nonnull instancetype)initWithNativeAdsManager:(nonnull FBNativeAdsManager *)manager
withViewProvider:(nonnull UIView * __nonnull(^)(FBNativeAd * __nonnull nativeAd, NSUInteger position))childViewProvider
withMaximum:(NSUInteger)maximumNativeAdCount NS_DESIGNATED_INITIALIZER;
@end
NS_ASSUME_NONNULL_END

View file

@ -0,0 +1,84 @@
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <FBAudienceNetwork/FBAdDefines.h>
#import <FBAudienceNetwork/FBNativeAd.h>
#import <FBAudienceNetwork/FBNativeAdsManager.h>
NS_ASSUME_NONNULL_BEGIN
/**
Additional functionality on top of FBNativeAdsManager to assist in using native ads within a UITableView. This class contains a mechanism to map indexPaths to native ads in a stable manner as well as helpers which assist in doing the math to include ads at a regular interval within a table view.
*/
FB_CLASS_EXPORT FB_SUBCLASSING_RESTRICTED
@interface FBNativeAdTableViewAdProvider : NSObject
/**
Passes delegate methods from FBNativeAd. Separate delegate calls will be made for each native ad contained.
*/
@property (nonatomic, weak, nullable) id<FBNativeAdDelegate> delegate;
/**
Create a FBNativeAdTableViewAdProvider.
- Parameter manager: The FBNativeAdsManager which is consumed by this class.
*/
- (instancetype)initWithManager:(FBNativeAdsManager *)manager NS_DESIGNATED_INITIALIZER;
/**
Retrieve a native ad for an indexPath, will return the same ad for a given indexPath until the native ads manager is refreshed. This method is intended for usage with a table view and specifically the caller is recommended to wait until tableView:cellForRowAtIndexPath: to ensure getting the best native ad for the given table cell.
- Parameter tableView: The tableView where native ad will be used
- Parameter indexPath: The indexPath to use as a key for this native ad
- Returns: A FBNativeAd which is loaded and ready to be used.
*/
- (FBNativeAd *)tableView:(UITableView *)tableView nativeAdForRowAtIndexPath:(NSIndexPath *)indexPath;
/**
Support for evenly distributed native ads within a table view. Computes whether this cell is an ad or not.
- Parameter indexPath: The indexPath of the cell within the table view
- Parameter stride: The frequency that native ads are to appear within the table view
- Returns: Boolean indicating whether the cell at the path is an ad
*/
- (BOOL)isAdCellAtIndexPath:(NSIndexPath *)indexPath forStride:(NSUInteger)stride;
/**
Support for evenly distributed native ads within a table view. Adjusts a non-ad cell indexPath to the indexPath it would be in a collection with no ads.
- Parameter indexPath: The indexPath to of the non-ad cell
- Parameter stride: The frequency that native ads are to appear within the table view
- Returns: An indexPath adjusted to what it would be in a table view with no ads
*/
- (NSIndexPath *)adjustNonAdCellIndexPath:(NSIndexPath *)indexPath forStride:(NSUInteger)stride;
/**
Support for evenly distributed native ads within a table view. Adjusts the total count of cells within the table view to account for the ad cells.
- Parameter count: The count of cells in the table view not including ads
- Parameter stride: The frequency that native ads are to appear within the table view
- Returns: The total count of cells within the table view including both ad and non-ad cells
*/
- (NSUInteger)adjustCount:(NSUInteger)count forStride:(NSUInteger)stride;
@end
NS_ASSUME_NONNULL_END

View file

@ -0,0 +1,70 @@
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <FBAudienceNetwork/FBAdDefines.h>
#import <FBAudienceNetwork/FBNativeAd.h>
#import <FBAudienceNetwork/FBNativeAdTableViewAdProvider.h>
#import <FBAudienceNetwork/FBNativeAdView.h>
#import <FBAudienceNetwork/FBNativeAdsManager.h>
NS_ASSUME_NONNULL_BEGIN
/**
Class which assists in putting FBNativeAdViews into UITableViews. This class manages the creation of UITableViewCells which host native ad views. Functionality is provided to create UITableCellViews as needed for a given indexPath as well as computing the height of the cells.
*/
FB_CLASS_EXPORT FB_SUBCLASSING_RESTRICTED
@interface FBNativeAdTableViewCellProvider : FBNativeAdTableViewAdProvider<UITableViewDataSource>
/**
Method to create a FBNativeAdTableViewCellProvider.
- Parameter manager: The naitve ad manager consumed by this provider
- Parameter type: The type of this native ad template. For more information, consult FBNativeAdViewType.
*/
- (instancetype)initWithManager:(FBNativeAdsManager *)manager forType:(FBNativeAdViewType)type;
/**
Method to create a FBNativeAdTableViewCellProvider.
- Parameter manager: The naitve ad manager consumed by this provider
- Parameter type: The type of this native ad template. For more information, consult FBNativeAdViewType.
- Parameter attributes: The layout of this native ad template. For more information, consult FBNativeAdViewLayout.
*/
- (instancetype)initWithManager:(FBNativeAdsManager *)manager forType:(FBNativeAdViewType)type forAttributes:(FBNativeAdViewAttributes *)attributes NS_DESIGNATED_INITIALIZER;
/**
Helper method for implementors of UITableViewDataSource who would like to host native ad UITableViewCells in their table view.
*/
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
/**
Helper method for implementors of UITableViewDelegate who would like to host native ad UITableViewCells in their table view.
*/
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
/**
Helper method for implementors of UITableViewDelegate who would like to host native ad UITableViewCells in their table view.
*/
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath;
@end
NS_ASSUME_NONNULL_END

View file

@ -0,0 +1,133 @@
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <UIKit/UIKit.h>
#import <FBAudienceNetwork/FBAdDefines.h>
#import <FBAudienceNetwork/FBNativeAd.h>
NS_ASSUME_NONNULL_BEGIN
@class FBNativeAdViewAttributes;
/**
@enum FBNativeAdViewType enum
Determines the type of native ad template. Different views are created
for different values of FBNativeAdViewType
*/
typedef NS_ENUM(NSInteger, FBNativeAdViewType) {
FBNativeAdViewTypeGenericHeight100 = 1,
FBNativeAdViewTypeGenericHeight120,
FBNativeAdViewTypeGenericHeight300,
FBNativeAdViewTypeGenericHeight400,
};
/**
The FBNativeAdView creates prebuilt native ad template views and manages native ads.
*/
FB_CLASS_EXPORT
@interface FBNativeAdView : UIView
/**
The type of the view, specifies which template to use
*/
@property (nonatomic, assign, readonly) FBNativeAdViewType type;
/**
This is a method to create a native ad template using the given placement id and type.
- Parameter nativeAd: The native ad to use to create this view.
- Parameter type: The type of this native ad template. For more information, consult FBNativeAdViewType.
*/
+ (nonnull instancetype)nativeAdViewWithNativeAd:(nonnull FBNativeAd *)nativeAd withType:(FBNativeAdViewType)type;
/**
A view controller that is used to present modal content. If nil, the view searches for a view controller.
*/
@property (nonatomic, weak, nullable) UIViewController *viewController;
/**
This is a method to create a native ad template using the given placement id and type.
- Parameter nativeAd: The native ad to use to create this view.
- Parameter type: The type of this native ad template. For more information, consult FBNativeAdViewType.
- Parameter attributes: The attributes to render this native ad template with.
*/
+ (nonnull instancetype)nativeAdViewWithNativeAd:(nonnull FBNativeAd *)nativeAd withType:(FBNativeAdViewType)type withAttributes:(nonnull FBNativeAdViewAttributes *)attributes;
@end
/**
Describes the look and feel of a native ad view.
*/
@interface FBNativeAdViewAttributes : NSObject <NSCopying>
/**
This is a method to create native ad view attributes with a dictionary
*/
- (nonnull instancetype)initWithDictionary:(nonnull NSDictionary *) dict NS_DESIGNATED_INITIALIZER;
/**
Background color of the native ad view.
*/
@property (nonatomic, copy, nullable) UIColor *backgroundColor;
/**
Color of the title label.
*/
@property (nonatomic, copy, nullable) UIColor *titleColor;
/**
Font of the title label.
*/
@property (nonatomic, copy, nullable) UIFont *titleFont;
/**
Color of the description label.
*/
@property (nonatomic, copy, nullable) UIColor *descriptionColor;
/**
Font of the description label.
*/
@property (nonatomic, copy, nullable) UIFont *descriptionFont;
/**
Background color of the call to action button.
*/
@property (nonatomic, copy, nullable) UIColor *buttonColor;
/**
Color of the call to action button's title label.
*/
@property (nonatomic, copy, nullable) UIColor *buttonTitleColor;
/**
Font of the call to action button's title label.
*/
@property (nonatomic, copy, nullable) UIFont *buttonTitleFont;
/**
Border color of the call to action button. If nil, no border is shown.
*/
@property (nonatomic, copy, nullable) UIColor *buttonBorderColor;
/**
Enables or disables autoplay for some types of media. Defaults to YES.
*/
@property (nonatomic, assign, getter=isAutoplayEnabled) BOOL autoplayEnabled;
/**
Returns default attributes for a given type.
- Parameter type: The type for this layout.
*/
+ (nonnull instancetype)defaultAttributesForType:(FBNativeAdViewType)type;
@end
NS_ASSUME_NONNULL_END

View file

@ -0,0 +1,102 @@
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <UIKit/UIKit.h>
#import <FBAudienceNetwork/FBAdDefines.h>
#import <FBAudienceNetwork/FBNativeAd.h>
NS_ASSUME_NONNULL_BEGIN
/**
@protocol FBNativeAdsManagerDelegate
Messages from FBNativeAdsManager indicating success or failure loading ads.
*/
@protocol FBNativeAdsManagerDelegate <NSObject>
/**
When the FBNativeAdsManager has finished loading a batch of ads this message will be sent. A batch of ads may be loaded in response to calling loadAds or due to an automatic refresh by the FBNativeAdsManager. At the point this message is fired all of the native ads will already be loaded and will not hence send their own nativeAdLoad: or nativeAd:didFailWithError: message.
*/
- (void)nativeAdsLoaded;
/**
When the FBNativeAdsManager has reached a failure while attempting to load a batch of ads this message will be sent to the application.
- Parameter error: An NSError object with information about the failure.
*/
- (void)nativeAdsFailedToLoadWithError:(NSError *)error;
@end
/**
This class provides a mechanism to fetch a set of ads and then use them within your application. The recommended usage is to call nextNativeAd: at the moment when you are about to render an ad. The native ads manager supports giving out as many ads as needed by cloning over the set of ads it got back from the server which can be useful for feed scenarios.
*/
FB_CLASS_EXPORT FB_SUBCLASSING_RESTRICTED
@interface FBNativeAdsManager : NSObject
/**
The delegate
*/
@property (nonatomic, weak, nullable) id<FBNativeAdsManagerDelegate> delegate;
/**
Set the native ads manager caching policy. This controls which media from the native ads are cached before the native ads manager calls nativeAdsLoaded on its delegate. The default is to not block on caching.
*/
@property (nonatomic, assign) FBNativeAdsCachePolicy mediaCachePolicy;
/**
Number of unique native ads that can be accessed through nextNativeAd:. This is not valid until the nativeAdsLoaded: message has been sent.
*/
@property (nonatomic, assign, readonly) NSUInteger uniqueNativeAdCount;
/**
Returns YES after nativeAdsLoaded: message has been sent.
*/
@property (nonatomic, assign, getter=isValid, readonly) BOOL valid;
/**
Initialize the native ads manager.
- Parameter placementID: The id of the ad placement. You can create your placement id from Facebook developers page.
- Parameter numAdsRequested: The number of ads you would like the native ads manager to retrieve.
*/
- (instancetype)initWithPlacementID:(NSString *)placementID
forNumAdsRequested:(NSUInteger)numAdsRequested NS_DESIGNATED_INITIALIZER;
/**
The method that kicks off the loading of ads. It may be called again in the future to refresh the ads manually.
*/
- (void)loadAds;
/**
By default the native ads manager will refresh its ads periodically. This does not mean that any ads which are shown in the application's UI will be refreshed but simply that calling nextNativeAd: may return different ads at different times. This method disables that functionality.
*/
- (void)disableAutoRefresh;
/**
Retrieve the next native ad to be used from the batch. It is highly recommended that the caller wait until immediately before rendering the ad content to call this method to ensure the best ad for the given context is used. If more than uniqueNativeAdCount ads are requested cloned ads will be returned. Periodically the native ads manager will refresh and new ads will be returned.
- Returns: A FBNativeAd which is loaded and ready to be used.
*/
@property (nonatomic, readonly, strong, nullable) FBNativeAd *nextNativeAd;
@end
NS_ASSUME_NONNULL_END

View file

@ -0,0 +1,201 @@
// Copyright 2004-present Facebook. All Rights Reserved.
//
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
// copy, modify, and distribute this software in source code or binary form for use
// in connection with the web services and APIs provided by Facebook.
//
// As with any software that integrates with the Facebook platform, your use of
// this software is subject to the Facebook Developer Principles and Policies
// [http://developers.facebook.com/policy/]. This copyright notice shall be
// included in all copies or substantial portions of the software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <Foundation/Foundation.h>
#import <StoreKit/StoreKit.h>
#import <FBAudienceNetwork/FBAdDefines.h>
NS_ASSUME_NONNULL_BEGIN
@protocol FBRewardedVideoAdDelegate;
/**
A modal view controller to represent a Facebook rewarded video ad. This
is a full-screen ad shown in your application.
*/
FB_CLASS_EXPORT FB_SUBCLASSING_RESTRICTED
@interface FBRewardedVideoAd : NSObject
/**
Typed access to the id of the ad placement.
*/
@property (nonatomic, copy, readonly) NSString *placementID;
/**
the delegate
*/
@property (nonatomic, weak, nullable) id<FBRewardedVideoAdDelegate> delegate;
/**
Returns true if the rewarded video ad has been successfully loaded.
You should check `isAdValid` before trying to show the ad.
*/
@property (nonatomic, getter=isAdValid, readonly) BOOL adValid;
/**
This is a method to initialize an FBRewardedVideoAd matching the given placement id.
- Parameter placementID: The id of the ad placement. You can create your placement id from Facebook developers page.
*/
- (instancetype)initWithPlacementID:(NSString *)placementID;
/**
This is a method to initialize an FBRewardedVideoAd matching the given placement id and allows the publisher to set
the reward to give to a user.
- Parameter placementID The id of the ad placement. You can create your placement id from Facebook developers page.
- Parameter userID the id of the user
- Parameter currency reward currency type
*/
- (instancetype)initWithPlacementID:(NSString *)placementID
withUserID:(nullable NSString *)userID
withCurrency:(nullable NSString *)currency;
/*!
This is a method to initialize an FBRewardedVideoAd matching the given placement id and allows the publisher to set
the reward to give to a user.
- Parameter placementID The id of the ad placement. You can create your placement id from Facebook developers page.
- Parameter userID the id of the user
- Parameter currency reward currency type
- Parameter amount reward amount
*/
- (instancetype)initWithPlacementID:(NSString *)placementID
withUserID:(nullable NSString *)userID
withCurrency:(nullable NSString *)currency
withAmount:(NSInteger)amount;
/**
Begins loading the FBRewardedVideoAd content.
You can implement `rewardedVideoAdDidLoad:` and `rewardedVideoAd:didFailWithError:` methods
of `FBRewardedVideoAdDelegate` if you would like to be notified as loading succeeds or fails.
*/
- (void)loadAd;
/**
Presents the rewarded video ad modally from the specified view controller.
- Parameter rootViewController: The view controller that will be used to present the rewarded video ad.
You can implement `rewardedVideoAdDidClick:` and `rewardedVideoAdWillClose:`
methods of `FBRewardedVideoAdDelegate` if you would like to stay informed for those events.
*/
- (BOOL)showAdFromRootViewController:(UIViewController *)rootViewController;
/**
Presents the rewarded video ad modally from the specified view controller.
- Parameter rootViewController: The view controller that will be used to present the rewarded video ad.
- Parameter flag: Pass YES to animate the presentation; otherwise, pass NO.
You can implement `rewardedVideoAdDidClick:` and `rewardedVideoAdWillClose:`
methods of `FBRewardedVideoAdDelegate` if you would like to stay informed for those events.
*/
- (BOOL)showAdFromRootViewController:(UIViewController *)rootViewController animated:(BOOL)flag;
@end
/**
@protocol
The methods declared by the FBRewardedVideoAdDelegate protocol allow the adopting delegate to respond
to messages from the FBRewardedVideoAd class and thus respond to operations such as whether the ad has
been loaded, the person has clicked the ad or closed video/end card.
*/
@protocol FBRewardedVideoAdDelegate <NSObject>
@optional
/**
Sent after an ad has been clicked by the person.
- Parameter rewardedVideoAd: An FBRewardedVideoAd object sending the message.
*/
- (void)rewardedVideoAdDidClick:(FBRewardedVideoAd *)rewardedVideoAd;
/**
Sent when an ad has been successfully loaded.
- Parameter rewardedVideoAd: An FBRewardedVideoAd object sending the message.
*/
- (void)rewardedVideoAdDidLoad:(FBRewardedVideoAd *)rewardedVideoAd;
/**
Sent after an FBRewardedVideoAd object has been dismissed from the screen, returning control
to your application.
- Parameter rewardedVideoAd: An FBRewardedVideoAd object sending the message.
*/
- (void)rewardedVideoAdDidClose:(FBRewardedVideoAd *)rewardedVideoAd;
/**
Sent immediately before an FBRewardedVideoAd object will be dismissed from the screen.
- Parameter rewardedVideoAd: An FBRewardedVideoAd object sending the message.
*/
- (void)rewardedVideoAdWillClose:(FBRewardedVideoAd *)rewardedVideoAd;
/**
Sent after an FBRewardedVideoAd fails to load the ad.
- Parameter rewardedVideoAd: An FBRewardedVideoAd object sending the message.
- Parameter error: An error object containing details of the error.
*/
- (void)rewardedVideoAd:(FBRewardedVideoAd *)rewardedVideoAd didFailWithError:(NSError *)error;
/**
Sent after the FBRewardedVideoAd object has finished playing the video successfully.
Reward the user on this callback.
- Parameter rewardedVideoAd: An FBRewardedVideoAd object sending the message.
*/
- (void)rewardedVideoAdComplete:(FBRewardedVideoAd *)rewardedVideoAd;
/**
Sent immediately before the impression of an FBRewardedVideoAd object will be logged.
- Parameter rewardedVideoAd: An FBRewardedVideoAd object sending the message.
*/
- (void)rewardedVideoAdWillLogImpression:(FBRewardedVideoAd *)rewardedVideoAd;
/**
Sent if server call to publisher's reward endpoint returned HTTP status code 200.
- Parameter rewardedVideoAd: An FBRewardedVideoAd object sending the message.
*/
- (void)rewardedVideoAdServerSuccess:(FBRewardedVideoAd *)rewardedVideoAd;
/**
Sent if server call to publisher's reward endpoint did not return HTTP status code 200
or if the endpoint timed out.
- Parameter rewardedVideoAd: An FBRewardedVideoAd object sending the message.
*/
- (void)rewardedVideoAdServerFailed:(FBRewardedVideoAd *)rewardedVideoAd;
@end
NS_ASSUME_NONNULL_END

View file

@ -0,0 +1,45 @@
framework module FBAudienceNetwork {
umbrella header "FBAudienceNetwork.h"
export *
module * {
export *
}
requires objc, blocks
link framework "AdSupport"
link framework "AudioToolbox"
link framework "AVFoundation"
link framework "CoreGraphics"
link framework "CoreImage"
link framework "CoreMedia"
link framework "CoreMotion"
link framework "Foundation"
link framework "SafariServices"
link framework "Security"
link framework "StoreKit"
link framework "UIKit"
link framework "WebKit"
link framework "VideoToolbox"
link "c++"
link "xml2"
header "FBAdChoicesView.h"
header "FBAdDefines.h"
header "FBAdSettings.h"
header "FBAdView.h"
header "FBInstreamAdView.h"
header "FBInterstitialAd.h"
header "FBMediaView.h"
header "FBNativeAd.h"
header "FBNativeAdScrollView.h"
header "FBNativeAdTableViewAdProvider.h"
header "FBNativeAdTableViewCellProvider.h"
header "FBNativeAdCollectionViewAdProvider.h"
header "FBNativeAdCollectionViewCellProvider.h"
header "FBNativeAdView.h"
header "FBNativeAdsManager.h"
header "FBRewardedVideoAd.h"
}

View file

@ -134,6 +134,9 @@
3432E1781E49B3A2008477E9 /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3432E1771E49B3A2008477E9 /* Bolts.framework */; };
3432E1791E49B3A2008477E9 /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3432E1771E49B3A2008477E9 /* Bolts.framework */; };
3432E17A1E49B3A2008477E9 /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3432E1771E49B3A2008477E9 /* Bolts.framework */; };
3432E17C1E49B484008477E9 /* FBAudienceNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3432E17B1E49B484008477E9 /* FBAudienceNetwork.framework */; };
3432E17D1E49B484008477E9 /* FBAudienceNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3432E17B1E49B484008477E9 /* FBAudienceNetwork.framework */; };
3432E17E1E49B484008477E9 /* FBAudienceNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3432E17B1E49B484008477E9 /* FBAudienceNetwork.framework */; };
3432E1811E49BF09008477E9 /* FBAdsBanner.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3432E1801E49BF09008477E9 /* FBAdsBanner.swift */; };
3432E1821E49BF09008477E9 /* FBAdsBanner.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3432E1801E49BF09008477E9 /* FBAdsBanner.swift */; };
3432E1831E49BF09008477E9 /* FBAdsBanner.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3432E1801E49BF09008477E9 /* FBAdsBanner.swift */; };
@ -1425,6 +1428,7 @@
342EE40F1C43DAA7009F6A49 /* MWMAuthorizationWebViewLoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWMAuthorizationWebViewLoginViewController.h; sourceTree = "<group>"; };
342EE4101C43DAA7009F6A49 /* MWMAuthorizationWebViewLoginViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MWMAuthorizationWebViewLoginViewController.mm; sourceTree = "<group>"; };
3432E1771E49B3A2008477E9 /* Bolts.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Bolts.framework; sourceTree = "<group>"; };
3432E17B1E49B484008477E9 /* FBAudienceNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FBAudienceNetwork.framework; sourceTree = "<group>"; };
3432E1801E49BF09008477E9 /* FBAdsBanner.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FBAdsBanner.swift; sourceTree = "<group>"; };
3432E1841E49BF5C008477E9 /* FBAdsBanner.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FBAdsBanner.xib; sourceTree = "<group>"; };
3446C6761DDCA9A200146687 /* libtraffic.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libtraffic.a; path = "../../../omim-build/xcode/Debug/libtraffic.a"; sourceTree = "<group>"; };
@ -2124,6 +2128,7 @@
340474FC1E08199D00C92850 /* FBSDKShareKit.framework in Frameworks */,
340474F91E08199D00C92850 /* FBSDKLoginKit.framework in Frameworks */,
67B78B491E422E2E0018E590 /* iAd.framework in Frameworks */,
3432E17C1E49B484008477E9 /* FBAudienceNetwork.framework in Frameworks */,
3404750B1E08199E00C92850 /* MyTargetSDK.framework in Frameworks */,
340474F61E08199D00C92850 /* FBSDKCoreKit.framework in Frameworks */,
340474F01E08199D00C92850 /* Crashlytics.framework in Frameworks */,
@ -2179,6 +2184,7 @@
6741AACF1BF356BA002C974C /* libosrm.a in Frameworks */,
6741AAD01BF356BA002C974C /* libplatform.a in Frameworks */,
3404750F1E08199E00C92850 /* MyTrackerSDK.framework in Frameworks */,
3432E17D1E49B484008477E9 /* FBAudienceNetwork.framework in Frameworks */,
6741AAD11BF356BA002C974C /* libprotobuf.a in Frameworks */,
6741AAD31BF356BA002C974C /* librouting.a in Frameworks */,
674A7E281C0DA573003D48E1 /* libstb_image.a in Frameworks */,
@ -2206,6 +2212,7 @@
340474FE1E08199D00C92850 /* FBSDKShareKit.framework in Frameworks */,
340474FB1E08199D00C92850 /* FBSDKLoginKit.framework in Frameworks */,
67B78B4F1E422E300018E590 /* iAd.framework in Frameworks */,
3432E17E1E49B484008477E9 /* FBAudienceNetwork.framework in Frameworks */,
3404750D1E08199E00C92850 /* MyTargetSDK.framework in Frameworks */,
340474F81E08199D00C92850 /* FBSDKCoreKit.framework in Frameworks */,
340474F21E08199D00C92850 /* Crashlytics.framework in Frameworks */,
@ -2355,6 +2362,7 @@
3432E1771E49B3A2008477E9 /* Bolts.framework */,
340474DC1E08199D00C92850 /* Crashlytics.framework */,
340474DD1E08199D00C92850 /* Fabric.framework */,
3432E17B1E49B484008477E9 /* FBAudienceNetwork.framework */,
340474DE1E08199D00C92850 /* FBSDKCoreKit.framework */,
340474DF1E08199D00C92850 /* FBSDKLoginKit.framework */,
340474E01E08199D00C92850 /* FBSDKShareKit.framework */,

View file

@ -7,6 +7,7 @@
#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>
#import <CoreGraphics/CoreGraphics.h>
#import <FBAudienceNetwork/FBAudienceNetwork.h>
#import "MWMMacros.h"
#import "MWMTypes.h"