{"id":10829,"date":"2024-08-27T17:49:17","date_gmt":"2024-08-27T15:49:17","guid":{"rendered":"https:\/\/refinery89.com\/docs\/ios-monetize-app-sdk-documentation\/user-manual\/ad-formats\/interstitial\/"},"modified":"2024-08-27T17:56:01","modified_gmt":"2024-08-27T15:56:01","slug":"interstitial","status":"publish","type":"docs","link":"https:\/\/refinery89.com\/it\/docs\/ios-monetize-app-sdk-documentation\/user-manual\/ad-formats\/interstitial\/","title":{"rendered":"Interstitial"},"content":{"rendered":"<div class=\"ak-renderer-extension\" data-layout=\"default\">\n<div class=\"ak-renderer-extension-overflow-container\">\n<div class=\"_1reo1wug _18m91wug _ugi3idpf _gutmidpf\" title=\"Macro (toc)\" data-fabric-macro=\"879697b4-264f-4f6b-960e-4c9cb6865e25\" data-macro-body=\"true\" data-macro-parameters=\"{&quot;style&quot;:{&quot;value&quot;:&quot;none&quot;}}\" data-testid=\"printable-wrapper\">\n<div class=\"macro-core toc-macro conf-macro output-block\" data-cssliststyle=\"none\" data-headerelements=\"H1,H2,H3,H4,H5,H6\" data-hasbody=\"false\" data-macro-name=\"toc\" data-macro-id=\"879697b4-264f-4f6b-960e-4c9cb6865e25\">\n<ul data-testid=\"list-style-toc-level-container\">\n<li class=\"_qtt8140o\" data-testid=\"list-style-toc-item-container\"><span class=\"toc-item-body\" data-outline=\"1\"><a class=\"_1wyb3gti toc-link\" href=\"#Prerequisites\" data-testid=\"toc-item-body\">Prerequisites<\/a><\/span><\/li>\n<li class=\"_qtt8140o\" data-testid=\"list-style-toc-item-container\"><span class=\"toc-item-body\" data-outline=\"2\"><a class=\"_1wyb3gti toc-link\" href=\"#Load-&amp;-Show-the-Ad\" data-testid=\"toc-item-body\">Load &amp; Show the Ad<\/a><\/span>\n<ul data-testid=\"list-style-toc-level-container\">\n<li class=\"_qtt8140o\" data-testid=\"list-style-toc-item-container\"><span class=\"toc-item-body\" data-outline=\"2.1\"><a class=\"_1wyb3gti toc-link\" href=\"#Load\" data-testid=\"toc-item-body\">Load<\/a><\/span><\/li>\n<li class=\"_qtt8140o\" data-testid=\"list-style-toc-item-container\"><span class=\"toc-item-body\" data-outline=\"2.2\"><a class=\"_1wyb3gti toc-link\" href=\"#Show-on-Button-Press\" data-testid=\"toc-item-body\">Show on Button Press<\/a><\/span><\/li>\n<li class=\"_qtt8140o\" data-testid=\"list-style-toc-item-container\"><span class=\"toc-item-body\" data-outline=\"2.3\"><a class=\"_1wyb3gti toc-link\" href=\"#Show-on-Creation-of-the-Interstitial\" data-testid=\"toc-item-body\">Show on Creation of the Interstitial<\/a><\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"_qtt8140o\" data-testid=\"list-style-toc-item-container\"><span class=\"toc-item-body\" data-outline=\"3\"><a class=\"_1wyb3gti toc-link\" href=\"#Lifecycle-Events\" data-testid=\"toc-item-body\">Lifecycle Events<\/a><\/span>\n<ul data-testid=\"list-style-toc-level-container\">\n<li class=\"_qtt8140o\" data-testid=\"list-style-toc-item-container\"><span class=\"toc-item-body\" data-outline=\"3.1\"><a class=\"_1wyb3gti toc-link\" href=\"#After-Interstitial\" data-testid=\"toc-item-body\">After Interstitial<\/a><\/span><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<h1 id=\"Prerequisites\" data-renderer-start-pos=\"2\">Prerequisites<\/h1>\n<ul class=\"ak-ul\" data-indent-level=\"1\">\n<li>\n<p data-renderer-start-pos=\"19\"><a class=\"cc-1rn59kg\" title=\"\/wiki\/spaces\/R8P\/pages\/1023082526\" href=\"https:\/\/refinery89.com\/it\/docs\/monetize-app-sdk-documentation-ios\/user-manual\/inizia-ottimizzare-entrate-pubblicitarie\/\" target=\"_blank\" rel=\"noopener\" data-testid=\"link-with-safety\" data-renderer-mark=\"true\">Inizia Ora<\/a>.<\/p>\n<\/li>\n<\/ul>\n<h1 id=\"Load-&amp;-Show-the-Ad\" data-renderer-start-pos=\"35\">Load &amp; Show the Ad<\/h1>\n<p data-renderer-start-pos=\"55\">Consider a scenario where a button click triggers an Interstitial and, subsequently, the <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">NewViewController<\/code> is launched from <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">MainViewController.<\/code><\/p>\n<h2 id=\"Load\" data-renderer-start-pos=\"200\">Load<\/h2>\n<p data-renderer-start-pos=\"206\">To load Interstitial Ad use <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">RefineryAdFactory.shared.createInterstitial<\/code> method inside the <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">super.viewDidLoad<\/code> of the <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">MainViewController<\/code>.<\/p>\n<div class=\"code-block\">\n<pre>\r\nclass MainViewController: UiViewControlelr {\r\n    var interstitialId:Int32 = -1;\r\n    \u2026\r\n    override func viewDidLoad() {\r\n        super.viewDidLoad()\r\n        \u2026\r\n        let interstitialAdId = ConfigBuilder.companion.INTERSTITIAL_TEST_R89_CONFIG_ID\r\n        interstitialId = RefineryAdFactory.shared.createInterstitial(configurationID: interstitialAdId, uiViewController: self, afterInterstitial: {\r\n            \/\/ This callback is called when interstital closed or failed to load.\r\n            \/\/ Here the navigation flow continus\r\n            self.present(NewViewController(), animated: true)\r\n        }, lifecycleCallbacks: nil)\r\n    }\r\n    \u2026\r\n}\r\n    <\/pre>\n<\/div>\n<div class=\"code-block cc-15qwbrk\"><\/div>\n<p data-renderer-start-pos=\"1012\">As we can observe in the <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">afterInterstitial<\/code> callback, as soon as the interstitial get closed the navigation to <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">NewViewController<\/code> will take place.<\/p>\n<h2 id=\"Show-on-Button-Press\" data-renderer-start-pos=\"1158\">Show on Button Press<\/h2>\n<p data-renderer-start-pos=\"1180\">Some events take place in your app, such as a button press, tab change or opening a link.<\/p>\n<div class=\"ak-editor-panel cc-tqp4ke sdk-warning\" data-panel-type=\"warning\">\n<div class=\"ak-editor-panel__content\">\n<p data-renderer-start-pos=\"1272\">If the Interstitial hasn\u2019t Loaded yet or failed to load when you call <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">show<\/code>, the flow will continue normally.<\/p>\n<\/p><\/div>\n<\/div>\n<p><\/br><\/p>\n<div class=\"code-block\">\n<pre>\r\n        class MainViewController: UiViewControlelr {\r\n            \u2026\r\n            override func viewDidLoad() {\r\n                super.viewDidLoad()\r\n                \u2026\r\n                \/\/ Set up an action on uiButton to display loaded interstitial with it\u2019s interstitialId.\r\n                uiButton.addAction(UIAction(handler: {_ in\r\n                    RefineryAdFactory.shared.show(index: self.interstitialId)\r\n                }), for: .touchUpInside)\r\n            }\r\n            \u2026\r\n        }\r\n    <\/pre>\n<\/div>\n<div class=\"code-block cc-15qwbrk\"><\/div>\n<h2 id=\"Show-on-Creation-of-the-Interstitial\" data-renderer-start-pos=\"1801\">Show on Creation of the Interstitial<\/h2>\n<p data-renderer-start-pos=\"1839\">In contrast to the previous example, where the interstitial ad was preliminarily loaded inside the <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">viewDidLoad<\/code> method, now the interstitial ad will be loaded after the button press event.<\/p>\n<div class=\"code-block\">\n<pre>\r\n        class MainViewController: UiViewControlelr {\r\n            \u2026\r\n            override func viewDidLoad() {\r\n                super.viewDidLoad()\r\n                \u2026\r\n                \/\/ Set up an action on uiButton to display loaded interstitial with it\u2019s interstitialId.\r\n                uiButton.addAction(UIAction(handler: {_ in\r\n                    createInterstitial()\r\n                }), for: .touchUpInside)\r\n            }\r\n            \u2026\r\n        }\r\n    <\/pre>\n<\/div>\n<div class=\"code-block cc-15qwbrk\"><\/div>\n<p data-renderer-start-pos=\"2407\">Here is the implementation of the <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">createInterstitial()<\/code> method.<\/p>\n<div class=\"code-block\">\n<pre>\r\nclass MainViewController: UiViewControlelr {\r\n    override func viewDidLoad() { \u2026 }\r\n    \u2026\r\n    func createInterstitial(){\r\n        let interstitialAdId = ConfigBuilder.companion.INTERSTITIAL_TEST_R89_CONFIG_ID\r\n        interstitialId = RefineryAdFactory.shared.createInterstitial(configurationID: interstitialAdId, uiViewController: self, afterInterstitial: {\r\n            \/\/ Here the navigation flow continus\r\n            self.present(NewViewController(), animated: true)\r\n        }, lifecycleCallbacks: InterstitialEventListenerDelegate(viewController: self))\r\n    }\r\n}\r\n    <\/pre>\n<\/div>\n<div class=\"code-block cc-15qwbrk\"><\/div>\n<p data-renderer-start-pos=\"3051\">The instance of <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">InterstitialEventListenerDelegate<\/code> is passed to the <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">lifecycleCallbacks<\/code> parameter. The <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">InterstitialEventListenerDelegate<\/code> will be notified whenever the interstitial gets loaded or fails to load.<\/p>\n<div class=\"code-block\">\n<pre>\r\nclass InterstitialEventListenerDelegate : InterstitialEventListener {\r\n\r\n    let viewController:LunchScreenViewController\r\n    \r\n    init(viewController: LunchScreenViewController) {\r\n        self.viewController = viewController\r\n    }\r\n    \r\n    override func onLoaded() {\r\n        RefineryAdFactory.shared.show(index: viewController.interstitialId)\r\n    }\r\n    \r\n    override func onFailedToLoad(error: R89LoadError) {\r\n        RefineryAdFactory.shared.show(index: viewController.interstitialId)\r\n    }\r\n}\r\n    <\/pre>\n<\/div>\n<div class=\"code-block cc-15qwbrk\"><\/div>\n<div class=\"ak-editor-panel cc-tqp4ke sdk-error\" data-panel-type=\"error\">\n<div class=\"ak-editor-panel__content\">\n<p data-renderer-start-pos=\"3760\"><strong data-renderer-mark=\"true\">This will increase the time it takes to perform the user action. <\/strong><\/p>\n<p data-renderer-start-pos=\"3827\">Because its making the Ad Request when the user takes the action. <strong data-renderer-mark=\"true\">You should use the previous approach<\/strong> where we make the request and store the ad ID for instant showing it when the user performs the actions.<\/p>\n<p data-renderer-start-pos=\"4036\">This is how we use Interstitial we use in Demos.<\/p>\n<\/p><\/div>\n<\/div>\n<p><\/br><\/p>\n<h1 id=\"Lifecycle-Events\" data-renderer-start-pos=\"4088\">Lifecycle Events<\/h1>\n<p data-renderer-start-pos=\"4106\">To observe the lifecycle methods of the interstitial create an instance of <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">InterstitialEventListenerDelegate<\/code> and pass it to <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">RefineryAdFactory.shared.createInterstitial<\/code> method.<br \/>\nFollowing methods are available.<\/p>\n<div class=\"code-block\">\n<pre>\r\n        private class LoggerInterstitialEventListener : InterstitialEventListener {\r\n            override func onLoaded() {\r\n                print(\u201conLoaded\u201d)\r\n            }\r\n            \r\n            override func onFailedToLoad(error: R89LoadError) {\r\n                print(\u201conFailedToLoad\u201d,\u201derror=\\(error)\u201d)\r\n            }\r\n            \r\n            override func onOpen() {\r\n                print(\u201conOpen\u201d)\r\n            }\r\n            \r\n            override func onClick() {\r\n                print(\u201conClick\u201d)\r\n            }\r\n            \r\n            override func onImpression() {\r\n                print(\u201conImpression\u201d)\r\n            }\r\n            \r\n            override func onAdDismissedFullScreenContent() {\r\n                print(\u201conAdDismissedFullScreenContent\u201d)\r\n            }\r\n            \r\n            override func onAdFailedToShowFullScreen(errorMsg: String) {\r\n                print(\u201conAdFailedToShowFullScreen\u201d,\u201derrorMsg=\\(errorMsg)\u201d)\r\n            }\r\n        }\r\n    <\/pre>\n<\/div>\n<div class=\"code-block cc-15qwbrk\"><\/div>\n<p data-renderer-start-pos=\"5042\">As you can see <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">onClose<\/code> is not present because we have the <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">afterInterstitial<\/code> event that is mandatory to pass as a parameter to <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">RefineryAdFactory.shared.createInterstitial<\/code> method and holds the same functionality as <code class=\"code cc-1o5d2cw\" data-renderer-mark=\"true\">onClose<\/code> with special cases.<\/p>\n<h2 id=\"After-Interstitial\" data-renderer-start-pos=\"5284\">After Interstitial<\/h2>\n<p data-renderer-start-pos=\"5304\">This is not passed as a separated object like the other Events because is mandatory to handle what happens after an Interstitial is closed. This is invoked in the SDK when:<\/p>\n<ul class=\"ak-ul\" data-indent-level=\"1\">\n<li>\n<p data-renderer-start-pos=\"5480\">Everything went right and the user just closed the full-screen ad.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"5550\">The ad hasn&#8217;t loaded yet and you tried to show it.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"5604\">The ad has been Invalidated and you tried to show it. Gets invalidated when:<\/p>\n<ul class=\"ak-ul\" data-indent-level=\"2\">\n<li>\n<p data-renderer-start-pos=\"5684\">Fails to load.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"5702\">Already shown.<\/p>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"5720\">Too Long without showing it.<\/p>\n<\/li>\n<\/ul>\n<\/li>\n<li>\n<p data-renderer-start-pos=\"5754\">The ad failed to show.<\/p>\n<\/li>\n<\/ul>","protected":false},"featured_media":0,"parent":10819,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","doc_tag":[],"class_list":["post-10829","docs","type-docs","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Interstitial | Refinery89<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/refinery89.com\/it\/docs\/ios-monetize-app-sdk-documentation\/user-manual\/formati-pubblicitari\/interstitial\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Interstitial | Refinery89\" \/>\n<meta property=\"og:description\" content=\"Prerequisites Load &amp; Show the Ad Load Show on Button Press Show on Creation of the Interstitial Lifecycle Events After Interstitial Prerequisites Get Started. Load &amp; Show the Ad Consider a scenario where a button click triggers an Interstitial and, subsequently, the NewViewController is launched from MainViewController. Load To load Interstitial Ad use RefineryAdFactory.shared.createInterstitial method [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/refinery89.com\/it\/docs\/ios-monetize-app-sdk-documentation\/user-manual\/formati-pubblicitari\/interstitial\/\" \/>\n<meta property=\"og:site_name\" content=\"Refinery89\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Refinery89\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-27T15:56:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/refinery89.com\/wp-content\/uploads\/2025\/08\/r89-thumbnail.png\" \/>\n\t<meta property=\"og:image:width\" content=\"200\" \/>\n\t<meta property=\"og:image:height\" content=\"200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@refinery89\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/refinery89.com\/docs\/ios-monetize-app-sdk-documentation\/user-manual\/ad-formats\/interstitial\/\",\"url\":\"https:\/\/refinery89.com\/docs\/ios-monetize-app-sdk-documentation\/user-manual\/ad-formats\/interstitial\/\",\"name\":\"Interstitial | Refinery89\",\"isPartOf\":{\"@id\":\"https:\/\/refinery89.com\/#website\"},\"datePublished\":\"2024-08-27T15:49:17+00:00\",\"dateModified\":\"2024-08-27T15:56:01+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/refinery89.com\/docs\/ios-monetize-app-sdk-documentation\/user-manual\/ad-formats\/interstitial\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/refinery89.com\/docs\/ios-monetize-app-sdk-documentation\/user-manual\/ad-formats\/interstitial\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/refinery89.com\/docs\/ios-monetize-app-sdk-documentation\/user-manual\/ad-formats\/interstitial\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/refinery89.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"IOS &#8211; Monetize App SDK Documentation\",\"item\":\"https:\/\/refinery89.com\/it\/docs\/ios-monetize-app-sdk-documentation\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Privato: User Manual\",\"item\":\"https:\/\/refinery89.com\/it\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Ad Formats\",\"item\":\"https:\/\/refinery89.com\/docs\/ios-monetize-app-sdk-documentation\/user-manual\/ad-formats\/\"},{\"@type\":\"ListItem\",\"position\":5,\"name\":\"Interstitial\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/refinery89.com\/#website\",\"url\":\"https:\/\/refinery89.com\/\",\"name\":\"Refinery89\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/refinery89.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/refinery89.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"it-IT\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/refinery89.com\/#organization\",\"name\":\"Refinery89\",\"alternateName\":\"R89\",\"url\":\"https:\/\/refinery89.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\/\/refinery89.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/refinery89.com\/wp-content\/uploads\/2025\/08\/r89-thumbnail.png\",\"contentUrl\":\"https:\/\/refinery89.com\/wp-content\/uploads\/2025\/08\/r89-thumbnail.png\",\"width\":200,\"height\":200,\"caption\":\"Refinery89\"},\"image\":{\"@id\":\"https:\/\/refinery89.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/Refinery89\/\",\"https:\/\/x.com\/refinery89\",\"https:\/\/www.linkedin.com\/company\/refinery89\/\",\"https:\/\/www.youtube.com\/@refinery89\",\"https:\/\/www.instagram.com\/refinery_89\/\",\"https:\/\/www.reddit.com\/user\/Refinery89\/\",\"https:\/\/share.google\/K8hFf3ktmUrTi1XCa\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Interstitial | Refinery89","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/refinery89.com\/it\/docs\/ios-monetize-app-sdk-documentation\/user-manual\/formati-pubblicitari\/interstitial\/","og_locale":"it_IT","og_type":"article","og_title":"Interstitial | Refinery89","og_description":"Prerequisites Load &amp; Show the Ad Load Show on Button Press Show on Creation of the Interstitial Lifecycle Events After Interstitial Prerequisites Get Started. Load &amp; Show the Ad Consider a scenario where a button click triggers an Interstitial and, subsequently, the NewViewController is launched from MainViewController. Load To load Interstitial Ad use RefineryAdFactory.shared.createInterstitial method [&hellip;]","og_url":"https:\/\/refinery89.com\/it\/docs\/ios-monetize-app-sdk-documentation\/user-manual\/formati-pubblicitari\/interstitial\/","og_site_name":"Refinery89","article_publisher":"https:\/\/www.facebook.com\/Refinery89\/","article_modified_time":"2024-08-27T15:56:01+00:00","og_image":[{"width":200,"height":200,"url":"https:\/\/refinery89.com\/wp-content\/uploads\/2025\/08\/r89-thumbnail.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_site":"@refinery89","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/refinery89.com\/docs\/ios-monetize-app-sdk-documentation\/user-manual\/ad-formats\/interstitial\/","url":"https:\/\/refinery89.com\/docs\/ios-monetize-app-sdk-documentation\/user-manual\/ad-formats\/interstitial\/","name":"Interstitial | Refinery89","isPartOf":{"@id":"https:\/\/refinery89.com\/#website"},"datePublished":"2024-08-27T15:49:17+00:00","dateModified":"2024-08-27T15:56:01+00:00","breadcrumb":{"@id":"https:\/\/refinery89.com\/docs\/ios-monetize-app-sdk-documentation\/user-manual\/ad-formats\/interstitial\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/refinery89.com\/docs\/ios-monetize-app-sdk-documentation\/user-manual\/ad-formats\/interstitial\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/refinery89.com\/docs\/ios-monetize-app-sdk-documentation\/user-manual\/ad-formats\/interstitial\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/refinery89.com\/"},{"@type":"ListItem","position":2,"name":"IOS &#8211; Monetize App SDK Documentation","item":"https:\/\/refinery89.com\/it\/docs\/ios-monetize-app-sdk-documentation\/"},{"@type":"ListItem","position":3,"name":"Privato: User Manual","item":"https:\/\/refinery89.com\/it\/"},{"@type":"ListItem","position":4,"name":"Ad Formats","item":"https:\/\/refinery89.com\/docs\/ios-monetize-app-sdk-documentation\/user-manual\/ad-formats\/"},{"@type":"ListItem","position":5,"name":"Interstitial"}]},{"@type":"WebSite","@id":"https:\/\/refinery89.com\/#website","url":"https:\/\/refinery89.com\/","name":"Refinery89","description":"","publisher":{"@id":"https:\/\/refinery89.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/refinery89.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"it-IT"},{"@type":"Organization","@id":"https:\/\/refinery89.com\/#organization","name":"Refinery89","alternateName":"R89","url":"https:\/\/refinery89.com\/","logo":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/refinery89.com\/#\/schema\/logo\/image\/","url":"https:\/\/refinery89.com\/wp-content\/uploads\/2025\/08\/r89-thumbnail.png","contentUrl":"https:\/\/refinery89.com\/wp-content\/uploads\/2025\/08\/r89-thumbnail.png","width":200,"height":200,"caption":"Refinery89"},"image":{"@id":"https:\/\/refinery89.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Refinery89\/","https:\/\/x.com\/refinery89","https:\/\/www.linkedin.com\/company\/refinery89\/","https:\/\/www.youtube.com\/@refinery89","https:\/\/www.instagram.com\/refinery_89\/","https:\/\/www.reddit.com\/user\/Refinery89\/","https:\/\/share.google\/K8hFf3ktmUrTi1XCa"]}]}},"comment_count":0,"_links":{"self":[{"href":"https:\/\/refinery89.com\/it\/wp-json\/wp\/v2\/docs\/10829","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/refinery89.com\/it\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/refinery89.com\/it\/wp-json\/wp\/v2\/types\/docs"}],"replies":[{"embeddable":true,"href":"https:\/\/refinery89.com\/it\/wp-json\/wp\/v2\/comments?post=10829"}],"version-history":[{"count":0,"href":"https:\/\/refinery89.com\/it\/wp-json\/wp\/v2\/docs\/10829\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/refinery89.com\/it\/wp-json\/wp\/v2\/docs\/10819"}],"wp:attachment":[{"href":"https:\/\/refinery89.com\/it\/wp-json\/wp\/v2\/media?parent=10829"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/refinery89.com\/it\/wp-json\/wp\/v2\/doc_tag?post=10829"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}