mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-07 13:57:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,339 @@
|
||||
//
|
||||
// FlurryAdDelegate.h
|
||||
// Flurry
|
||||
//
|
||||
// Copyright 2010 - 2013 Flurry, Inc. All rights reserved.
|
||||
//
|
||||
// Methods in this header file are for use with Flurry
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
typedef enum {
|
||||
WEB_BANNER = 1,
|
||||
WEB_TAKEOVER = 2,
|
||||
VIDEO_TAKEOVER = 3,
|
||||
AD_BANNER = 4,
|
||||
AD_TAKEOVER = 5,
|
||||
NETWORK_BANNER = 6,
|
||||
NETWORK_TAKEOVER = 7
|
||||
} FlurryAdType;
|
||||
|
||||
/*!
|
||||
* @brief Provides all available delegates for receiving callbacks related to Ad Serving.
|
||||
*
|
||||
* Set of methods that allow developers to manage and take actions within
|
||||
* different phases of App ad display.
|
||||
*
|
||||
* @note This class serves as a delegate for FlurryAds. \n
|
||||
* For additional information on how to use Flurry's Ads SDK to
|
||||
* attract high-quality users and monetize your user base see <a href="http://wiki.flurry.com/index.php?title=Publisher">Support Center - Publisher</a>.
|
||||
* @author 2010 - 2013 Flurry, Inc. All Rights Reserved.
|
||||
* @version 4.3.0
|
||||
*
|
||||
*/
|
||||
@protocol FlurryAdDelegate <NSObject>
|
||||
|
||||
@optional
|
||||
|
||||
/*!
|
||||
* @brief Invoked when an ad is received for the specified @c adSpace.
|
||||
* @since 4.1
|
||||
*
|
||||
* This method informs the app that an ad has been received and is available for display.
|
||||
*
|
||||
* @see FlurryAds#fetchAdForSpace:frame:size: for details on the method that will invoke this delegate.
|
||||
*
|
||||
* @param adSpace The placement of an ad in your app, where placement may
|
||||
* be splash screen for SPLASH_AD.
|
||||
*/
|
||||
- (void) spaceDidReceiveAd:(NSString*)adSpace;
|
||||
|
||||
/*!
|
||||
* @brief Invoked when an ad can not be retrieved for the specified @c adSpace.
|
||||
* @since 4.1
|
||||
*
|
||||
* This method informs the app that an ad has failed to be received for the given adSpace.
|
||||
*
|
||||
* @see FlurryAds#fetchAdForSpace:frame:size: for details on the method that will invoke this delegate.
|
||||
*
|
||||
* @param adSpace The placement of an ad in your app, where placement may
|
||||
* @param error The error, if known, that caused ads not to be received.
|
||||
* be splash screen for SPLASH_AD.
|
||||
*/
|
||||
- (void) spaceDidFailToReceiveAd:(NSString*)adSpace error:(NSError *)error;
|
||||
|
||||
/*!
|
||||
* @brief Invoked when an ad is about to display on the specified @c adSpace.
|
||||
* @since 4.1.0
|
||||
*
|
||||
* This method informs the app that an ad is about to be displayed. You can decide at this point not to show this ad by simply returning NO.
|
||||
*
|
||||
* @see FlurryAds#displayAdForSpace:view: for details on the method that will invoke this delegate. \n
|
||||
* FlurryAds#fetchAndDisplayAdForSpace:view:size: for details on the method that will invoke this delegate.
|
||||
*
|
||||
* @param adSpace The placement of an ad in your app, where placement may
|
||||
* be splash screen for SPLASH_AD.
|
||||
* @param interstitial YES/NO if the space to display will be an interstitial.
|
||||
*/
|
||||
- (BOOL) spaceShouldDisplay:(NSString*)adSpace interstitial:(BOOL)interstitial;
|
||||
|
||||
/*!
|
||||
* @brief [Deprecated] This method is deprecated. -[spaceShouldDisplay:interstitial:] should be used.
|
||||
*/
|
||||
- (BOOL)spaceShouldDisplay:(NSString*)adSpace forType:(FlurryAdType)type __attribute__ ((deprecated));
|
||||
|
||||
/*!
|
||||
* @brief Invoked when an ad is rendered.
|
||||
* @since 5.1.0
|
||||
*
|
||||
* This method informs the user an ad was retrieved, and successful in displaying to the user.
|
||||
*
|
||||
* @see FlurryAds#displayAdForSpace:view: for details on the method that will invoke this delegate. \n
|
||||
* FlurryAds#fetchAndDisplayAdForSpace:view:size: for details on the method that will invoke this delegate.
|
||||
*
|
||||
* @param adSpace The placement of an ad in your app, where placement may
|
||||
* be splash screen for SPLASH_AD.
|
||||
* @param interstitial YES/NO if the space to display will be an interstitial.
|
||||
*/
|
||||
- (void) spaceDidRender:(NSString *)space interstitial:(BOOL)interstitial;
|
||||
|
||||
/*!
|
||||
* @brief Invoked when an ad fails to render.
|
||||
* @since 4.0.0
|
||||
*
|
||||
* This method informs the user an ad was retrieved, however, was unsuccessful in displaying to the user (could be lost network connectivity for example).
|
||||
*
|
||||
* @see FlurryAds#displayAdForSpace:view: for details on the method that will invoke this delegate. \n
|
||||
* FlurryAds#fetchAndDisplayAdForSpace:view:size: for details on the method that will invoke this delegate.
|
||||
*
|
||||
* @param adSpace The placement of an ad in your app, where placement may
|
||||
* @param error The error, if known, that caused ads not to be rendered.
|
||||
* be splash screen for SPLASH_AD.
|
||||
*/
|
||||
- (void) spaceDidFailToRender:(NSString *)space error:(NSError *)error;
|
||||
|
||||
/*!
|
||||
* @brief Invoked when the ad will be removed.
|
||||
* @since 4.1
|
||||
*
|
||||
* This method informs the app that an ad will be removed.
|
||||
*
|
||||
* @param adSpace The placement of an ad in your app, where placement may be splash screen for SPLASH_AD.
|
||||
* @param interstitial YES/NO indicates if space being removed is an interstitial
|
||||
*
|
||||
*/
|
||||
- (void)spaceWillDismiss:(NSString *)adSpace interstitial:(BOOL)interstitial;
|
||||
|
||||
/*!
|
||||
* @brief Invoked when the ad has been removed.
|
||||
* @since 4.0.0
|
||||
*
|
||||
* This method informs the app that an ad has closed. You can use this to resume app
|
||||
* states.
|
||||
*
|
||||
* @param adSpace The placement of an ad in your app, where placement may
|
||||
* be splash screen for SPLASH_AD.
|
||||
* @param interstitial YES/NO indicates if space being removed is an interstitial
|
||||
*/
|
||||
- (void)spaceDidDismiss:(NSString *)adSpace interstitial:(BOOL)interstitial;
|
||||
|
||||
/*!
|
||||
* @brief Invoked when the ad has been selected that will take the user out of the app.
|
||||
* @since 4.0.0
|
||||
*
|
||||
* This method informs the app that an ad has been clicked and the user is about to be taken outside the app.
|
||||
*
|
||||
* @param adSpace The placement of an ad in your app, where placement may
|
||||
* be splash screen for SPLASH_AD.
|
||||
*/
|
||||
- (void)spaceWillLeaveApplication:(NSString *)adSpace;
|
||||
|
||||
/*!
|
||||
* @brief Invoked when a space will be expanded.
|
||||
* @since 4.1
|
||||
*
|
||||
* This method informs the app an ad space (typcially a banner) will be expanded. Apps should pause their state when they receive this notification
|
||||
*
|
||||
* @param adSpace The placement of an ad in your app, where placement may
|
||||
* be splash screen for SPLASH_AD.
|
||||
*/
|
||||
- (void) spaceWillExpand:(NSString *)adSpace;
|
||||
|
||||
/*!
|
||||
* @brief Invoked when a space will be collapsed.
|
||||
* @since 4.1
|
||||
*
|
||||
* This method informs the app an ad space (typcially a banner) will be collapsed.
|
||||
*
|
||||
* @param adSpace The placement of an ad in your app, where placement may
|
||||
* be splash screen for SPLASH_AD.
|
||||
*/
|
||||
- (void) spaceWillCollapse:(NSString *)adSpace;
|
||||
|
||||
/*!
|
||||
* @brief Invoked when a space has been collapsed.
|
||||
* @since 4.1
|
||||
*
|
||||
* This method informs the app an ad space (typcially a banner) has been collapsed. Apps should resume their state when they receive this notification
|
||||
*
|
||||
* @param adSpace The placement of an ad in your app, where placement may
|
||||
* be splash screen for SPLASH_AD.
|
||||
*/
|
||||
- (void) spaceDidCollapse:(NSString *)adSpace;
|
||||
|
||||
/*!
|
||||
* @brief Informational callback invoked when an ad is clicked for the specified @c adSpace.
|
||||
* @since 4.1
|
||||
*
|
||||
* This method informs the app that an ad has been clicked. This should not be used to adjust state of an app. It is only intended for informational purposes.
|
||||
*
|
||||
* @param adSpace The placement of an ad in your app, where placement may
|
||||
* be splash screen for SPLASH_AD.
|
||||
*/
|
||||
- (void) spaceDidReceiveClick:(NSString*)adSpace;
|
||||
|
||||
|
||||
/*!
|
||||
* @brief Invoked when a video finishes playing
|
||||
* @since 4.2.0
|
||||
*
|
||||
* This method informs the app that a video associated with an ad has finished playing
|
||||
*
|
||||
* @param adSpace The placement of an ad in your app, where placement may be splash screen for SPLASH_AD.
|
||||
*
|
||||
*/
|
||||
- (void)videoDidFinish:(NSString *)adSpace;
|
||||
|
||||
|
||||
@optional
|
||||
|
||||
#pragma mark App Keys
|
||||
/** @name Third party network Calls
|
||||
* Optional calls to pass information needed to display ads through 3rd parties.
|
||||
*/
|
||||
//@{
|
||||
|
||||
/*!
|
||||
* @brief The Millennial APID.
|
||||
* @since 4.0.0
|
||||
*
|
||||
* This is the id for your app as set in Millennial, found here: https://developer.millennialmedia.com/Application/index.php#manageApps.
|
||||
*/
|
||||
- (NSString *)appSpotMillennialAppKey; //your millennial APID, found here: https://developer.millennialmedia.com/Application/index.php#manageApps
|
||||
|
||||
/*!
|
||||
* @brief The Millennial APID for interstitials.
|
||||
* @since 4.0.0
|
||||
*
|
||||
* This is the id for your app as set in Millennial, found here: https://developer.millennialmedia.com/Application/index.php#manageApps.
|
||||
*/
|
||||
- (NSString *)appSpotMillennialInterstitalAppKey;
|
||||
|
||||
/*!
|
||||
* @brief The InMobi APID.
|
||||
* @since 4.0.0
|
||||
*
|
||||
* This is the id for your app as set in InMobi, found here: https://www.inmobi.com/pub/mysite.html?platFormType=all
|
||||
*/
|
||||
- (NSString *)appSpotInMobiAppKey;
|
||||
|
||||
/*!
|
||||
* @brief The AdMob Publisher Id.
|
||||
* @since 4.0.0
|
||||
*
|
||||
* This is the id for your app as set in AdMob, found here: http://www.admob.com/my_sites/ (click manage settings)
|
||||
*/
|
||||
- (NSString *)appSpotAdMobPublisherID;
|
||||
|
||||
/*!
|
||||
* @brief The Mobclix Application Id.
|
||||
* @since 4.0.0
|
||||
*
|
||||
* This is the id for your app as set in Mobclix
|
||||
*/
|
||||
- (NSString *)appSpotMobclixApplicationID;
|
||||
|
||||
/*!
|
||||
* @brief The Jumptap Publisher Id.
|
||||
* @since 4.1.2
|
||||
*
|
||||
* This is the pub id for your app as set in Jumptap
|
||||
*/
|
||||
- (NSString *)appSpotJumptapPublisherID;
|
||||
|
||||
/*!
|
||||
* @brief The Jumptap Site Id.
|
||||
* @since 4.1.2
|
||||
*
|
||||
* This is the site id for your app as set in Jumptap. It is an optional parameter.
|
||||
*/
|
||||
- (NSString *)appSpotJumptapSiteID;
|
||||
|
||||
/*!
|
||||
* @brief Jumptap Banner Ad Spot ID
|
||||
* @since 4.1.2
|
||||
*
|
||||
* This is the ad spot id for a Banner (320x50) ad spot set in JumpTap
|
||||
*/
|
||||
- (NSString *)appSpotJumptapBannerAdSpotID;
|
||||
|
||||
/*!
|
||||
* @brief Jumptap Leaderboard Ad Spot ID
|
||||
* @since 4.1.2
|
||||
*
|
||||
* This is the ad spot id for a Leaderboard (720x90) ad spot set in JumpTap
|
||||
*/
|
||||
- (NSString *)appSpotJumptapLeaderboardAdSpotID;
|
||||
|
||||
/*!
|
||||
* @brief Jumptap Medium Rectange Ad Spot ID
|
||||
* @since 4.1.2
|
||||
*
|
||||
* This is the ad spot id for a Medium Rectangle (320x50) ad spot set in JumpTap.
|
||||
* The Medium Rectangle Ad Spot ID will be used whenever the ad frame can fit it
|
||||
* (e.g. interstitial ads).
|
||||
*/
|
||||
- (NSString *)appSpotJumptapMediumRectangleAdSpotID;
|
||||
|
||||
/*!
|
||||
* @brief The Greystripe Application Id.
|
||||
* @since 4.0.0
|
||||
*
|
||||
* This is the id for your app as set in Greystripe
|
||||
*/
|
||||
- (NSString *)appSpotGreystripeApplicationID;
|
||||
|
||||
|
||||
#pragma mark Information
|
||||
|
||||
|
||||
#pragma mark Callbacks
|
||||
|
||||
/*!
|
||||
* @brief [Deprecated] Allow you to set your rootViewController.
|
||||
* @since 4.0.0
|
||||
* @deprecated
|
||||
*
|
||||
* This method has been deprecated. Please call FlurryAds#initialze: instead.
|
||||
*
|
||||
*/
|
||||
- (id)appSpotRootViewController __attribute__ ((deprecated));
|
||||
|
||||
#pragma mark Optional settings
|
||||
|
||||
/**
|
||||
Some networks support accelerometer-enabled ads.
|
||||
*/
|
||||
/*!
|
||||
* @brief For networks that support accelerometer-enabled ads.
|
||||
* @since 4.0.0
|
||||
*
|
||||
* This method allows you to enable accelerometer based ads for networks that support this setting via the client sdk. Set to NO if your app uses the accelerometer
|
||||
to avoid conflict. Set to YES if you want the special ads. Default is NO.
|
||||
*/
|
||||
- (BOOL)appSpotAccelerometerEnabled;
|
||||
|
||||
//@}
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user