123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- //
- // 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 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
|